From http://www.w3schools.com (Copyright Refsnes Data)
JavaScript RegExp Object
The \xxx character is used to find the Latin character specified by an octal number xxx.
If no match is found, it returns null.
|
new RegExp("\xxx") or simply: /\xxx/ |
ExampleDo a global search for octal number 127 (W) in a string:
The marked text below shows where the expression gets a match:
Try it yourself » |
JavaScript RegExp Object
From http://www.w3schools.com (Copyright Refsnes Data)