I have string like this:
command ". / * or any other char like this" some_param="string param" some_param2=50
I want to tokenize this string into:
command
". / * or any other char like this"
some_param="string param"
some_param2=50
I know it's possible to split with spaces but these parameters can also be seperated by commas, like:
command ". / * or any other char like this", some_param="string param", some_param2=50
I tried to do it like this:
\w+\=?\"?.+\"?
but it didn't work.