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
At the moment, no symbol classes are supported (e.g. \d, \w, \s, etc.). Support is pretty trivial to implement, but requires both front and back end support.
Workarounds:
Symbol classes are merely a convenience. They can be easily implemented using symbol sets instead (e.g. [0-9] instead of \d) which are fully supported.
The text was updated successfully, but these errors were encountered:
At the moment, no symbol classes are supported (e.g.
\d
,\w
,\s
, etc.). Support is pretty trivial to implement, but requires both front and back end support.Workarounds:
[0-9]
instead of\d
) which are fully supported.The text was updated successfully, but these errors were encountered: