- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
With JavaScript RegExp search a tab character.
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>
Advertisements