Hi,
It would be great to have regex support.
Like the String.prototype.split() function in js.
It will permit some powerful capabilities, like making easy the creation of a mindmap of a API
Let's say I want to split a string that is written is PascalCase. With regex thanks to positive lookahead
it's direct : s.split(/(?=[A-Z])/) .
example : "SomeDumbExemple"
result : ["Some","Dumb","Exemple"]
Thanks for your feedback