With JavaScript RegExp find a character except newline?



To find a character except for a newline, use the Metacharacter. (period). You can try to run the following code to find a character −

Example

<html>    <head>       <title>JavaScript Regular Expression</title>    </head>    <body>       <script>          var myStr = "We provide websites! We provide content!";          var reg = /p.o/g;          var match = myStr.match(reg);                    document.write(match);       </script>    </body> </html>
Updated on: 2020-06-23T07:40:33+05:30

254 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements