Closed pittidoe90 closed 3 years ago
If you try to parse a regExp within a string it returns a error.
for example:
{"regExp":"\d+"}
Pretty sure \d is not a valid escape sequence; see https://jsonlint.com/. You need \\d for a literal backslash.
\d
\\d
If you try to parse a regExp within a string it returns a error.
for example:
{"regExp":"\d+"}