If I have a string like this
string
create myclass \"56, \'for the better or worse\', 54.781\"
How can I parse it such that the resul
Regex Demo
(\w+|"[^"]*")
Get the matches in the first capture group.
\w+
"[^"]*"
|