How to perform Multiline matching with JavaScript RegExp?

To perform multiline matching, use the M modifier available in JavaScript Regular Expression.

Example

You can try to run the following code to perform multiline matching −

<html>
   <head>
      <title>JavaScript Regular Expression</title>
   </head>

   <body>
      <script>
         var myStr = "Welcom\ning!";
         var reg = /^ing/m;
         var match = myStr.match(reg);
         
         document.write(match);
      </script>
   </body>
</html>
Updated on: 2020-06-23T07:32:31+05:30

681 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements