With JavaScript RegExp search a carriage return character.


To find carriage return character with JavaScript Regular Expression, use the following −

\r

Example

You can try to run the following code to find a carriage return character. It returns the position where the carriage return (\r) character is found −

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

   <body>
      <script>
         var myStr = "100% \r Responsive!";
         var reg = /\r/;
         var match = myStr.search(reg);
         
         document.write(match);
      </script>
   </body>
</html>

Updated on: 23-Jun-2020

478 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements