How do I match U1234, but not \U1234 in Javascript?
I can't figure out how to not match the single backslash. The closest I can get is:
\[\\]{0}U[0-9]{4}\b
But that doesn't work. Any suggestions?
|
|
How do I match U1234, but not \U1234 in Javascript? I can't figure out how to not match the single backslash. The closest I can get is:
But that doesn't work. Any suggestions? |
||
|
|
|
JavaScript definitely does not support lookbehind assertions. The next best way to get what you want, in my opinion, would be
Explanation:
|
||||||||||||
|
|
|
|
||||
|
|
|
Unfortunately JS doesn't seem to support proper syntax for this, i.e. back assertion So you need to use:
This is syntax for regexp literal. If you put regexp in a string, you have to escape backslashes again:
|
||
|
|
|
|
I would suggest using lookbehind, but JavaScript doesn't seem to support it [[1]]. Maybe you can match on U[0-9]{4}, find where the match is, and check the character to its left to see if it's a \ or not? |
||
|
|
|
|
JavaScript's RegExp does not support negative look-behind assertions. Ideas that propose you match only /[^\]U/ will match strings like "_U", so that's not the answer. Your best bet is to use two regular expressions, the first to find all occurrences, then the second to filter the look-behind.
|
||
|
|
|
|
Ummm ... Is \^U[0-9]{4}\b works for you? |
||
|
|