You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As for the syntax, it would be nice to have regular expression literals like in many other languages. This would require extra work with the parser but I think it's worth to try. Of course, regular expressions would have their own class Regexp and they could be compiled dynamically with a constructor which takes string as argument like this: Regexp("^[ \\t]+|[ \\t]+$")
What should be the syntax of regular expressions in our language? Matching operators like ~= or a global regex object with suitable methods?
Also should we use an external library for regular expressions or implement them ourselves?
The text was updated successfully, but these errors were encountered: