I need to parse my string but my delimiters are all characters excepts a-z and A-Z. How can I do that?
I thought strtok but I must write all character as delimiter and it would be too long. Exampe string:
Ax'cda2hsa+AsF(f/a as
It needs to be split into: "Ax" "cda" "hsa" "AsF" "f" "a" "as"
Is there any parsing function in C libraries which i can write my all delimeters as an interval ?