Example
Search for a tab character in a string:
var str = "Visit w3ii.\tLearn Javascript.";
var patt1 = /\t/;
The marked text below shows where the expression gets a match:
Visit w3ii.\tLearn Javascript.
Try it Yourself »
Definition and Usage
The \t metacharacter is used to find a tab character.
\t returns the position where the tab character was found. If no match is found, it returns -1.
Browser Support
Expression | |||||
---|---|---|---|---|---|
\t | Yes | Yes | Yes | Yes | Yes |
Syntax
new RegExp("\\t")
or simply:
/\t/
< JavaScript RegExp Object