HTML Editor
<!DOCTYPE html> <html lang="en-US"> <body> <p>Click the button to do a case-sensitive global search for octal number 123 (S) in a string.</p> <button onclick="myFunction()">Click me</button> <p id="point"></p> <script> function myFunction(){ var str = "His style Is who is he IS"; var patt1 = /\123/g; var result = str.match(patt1); document.getElementById("point").innerHTML = result; } </script> </body> </html>
OUTPUT
×

Save as Private