JavaScript | RegExp \xxx Metacharacter Last Updated : 22 Apr, 2019 Comments Improve Suggest changes 2 Likes Like Report The RegExp \xxx Metacharacter in JavaScript is used to find the character specified by an octal number xxx. If the match is found it returns the character else it returns NULL. Syntax: /\xxx/ or new RegExp("\\xxx") Syntax with modifiers: /\xxx/g or new RegExp("\\xxx", "g") Example 1: This example returns the character corresponding to octal number 107 i.e G in the whole string. html <!DOCTYPE html> <html> <head> <title> JavaScript RegExp \xxx Metacharacter </title> </head> <body style="text-align:center"> <h1 style="color:green"> GeeksforGeeks </h1> <h2>RegExp \xxx Metacharacter</h2> <p>Input String: GeeksforGeeks@_123_$</p> <button onclick="geek()"> Click it! </button> <p id="app"></p> <script> function geek() { var str1 = "GeeksforGeeks@_123_$"; var regex4 = /\107/gi; var match4 = str1.match(regex4); document.getElementById("app").innerHTML = "Found " + match4.length + " match: " + match4; } </script> </body> </html> Output: Before Clicking the button: After Clicking the button: Example 2: This example matches the octal number (147) which corresponds to "g" and replaces it with "G". html <!DOCTYPE html> <html> <head> <title> JavaScript RegExp \xxx Metacharacter </title> </head> <body style="text-align:center"> <h1 style="color:green"> GeeksforGeeks </h1> <h2>RegExp \xxx Metacharacter</h2> <p>String: geeky@128</p> <button onclick="geek()"> Click it! </button> <p id="app"></p> <script> function geek() { var str1 = "geeky@128"; var regex4 = new RegExp("\\147", "gi"); var replace = "G"; var match4 = str1.replace(regex4, replace); document.getElementById("app").innerHTML = " New string: " + match4; } </script> </body> </html> Output: Before Clicking the button: After Clicking the button: Supported Browsers: The browsers supported by RegExp \xxx Metacharacter are listed below: Google Chrome Apple Safari Mozilla Firefox Opera Internet Explorer Create Quiz Comment V Vishal Chaudhary 2 Follow 2 Improve V Vishal Chaudhary 2 Follow 2 Improve Article Tags : JavaScript Web Technologies JavaScript-RegExp Explore JavaScript BasicsIntroduction to JavaScript4 min readVariables and Datatypes in JavaScript6 min readJavaScript Operators5 min readControl Statements in JavaScript4 min readArray & StringJavaScript Arrays7 min readJavaScript Array Methods7 min readJavaScript Strings5 min readJavaScript String Methods9 min readFunction & ObjectFunctions in JavaScript5 min readJavaScript Function Expression3 min readFunction Overloading in JavaScript4 min readObjects in JavaScript4 min readJavaScript Object Constructors4 min readOOPObject Oriented Programming in JavaScript3 min readClasses and Objects in JavaScript4 min readWhat Are Access Modifiers In JavaScript ?5 min readJavaScript Constructor Method7 min readAsynchronous JavaScriptAsynchronous JavaScript2 min readJavaScript Callbacks4 min readJavaScript Promise4 min readEvent Loop in JavaScript4 min readAsync and Await in JavaScript2 min readException HandlingJavascript Error and Exceptional Handling6 min readJavaScript Errors Throw and Try to Catch2 min readHow to create custom errors in JavaScript ?2 min readJavaScript TypeError - Invalid Array.prototype.sort argument1 min readDOMHTML DOM (Document Object Model)8 min readHow to select DOM Elements in JavaScript ?3 min readJavaScript Custom Events4 min readJavaScript addEventListener() with Examples9 min readAdvanced TopicsClosure in JavaScript4 min readJavaScript Hoisting6 min readScope of Variables in JavaScript3 min readJavaScript Higher Order Functions7 min readDebugging in JavaScript4 min read Like