Im trying to tokenize a string input, but I cant get my head around how to do it.
The Idea is, to split the string into instances of alphabetical words and non alphabetical symbols.
For example the String "Test, ( abc)"
would be split into ["Test" , "," , "(" , "abc" , ")" ].
Right now I use this regular Expression:
"(?<=[a-zA-Z])(?=[^a-zA-Z])"
but it doesnt do what I want.
Any ideas what else I could use?