From http://www.w3schools.com (Copyright Refsnes Data)
JavaScript RegExp Object
The \xdd character is used to find the Latin character specified by a hexadecimal number dd.
If no match is found, it returns null.
|
new RegExp("\xdd") or simply: /\xdd/ |
ExampleDo a global search for the hexadecimal number 57 (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)