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
JS regex flavour defines a set of escape codes prefixed with \c:
\cX: Matches a control character using caret notation, where "X" is a letter from A–Z (corresponding to codepoints U+0001–U+001F). For example, /\cM/ matches "\r" in "\r\n".
JS regex flavour defines a set of escape codes prefixed with
\c
:https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions/Character_Classes
https://www.ecma-international.org/ecma-262/5.1/#sec-15.10.1
Another example:
But currently it seems like RandExp treats
\ca
as "escapedc
followed bya
":The text was updated successfully, but these errors were encountered: