Search for a Tab Character Using JavaScript RegExp



To find a tab character with JavaScript Regular Expression, use the following −

\t

Example

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

<html>
   <head>
      <title>JavaScript Regular Expression</title>
   </head>
   <body>
      <script>
         var myStr = "Simple \t Responsive!";
         var reg = /\t/;
         var match = myStr.search(reg);

         document.write(match);
      </script>
   </body>
</html>
Updated on: 2020-06-23T08:05:22+05:30

759 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements