El metacarácter RegExp \t en JavaScript se usa para encontrar el carácter de tabulación. Si se encuentra, devuelve la posición, de lo contrario, devuelve -1.
Sintaxis:
/\t/
o
new RegExp("\\t")
Ejemplo 1: este ejemplo busca el carácter de tabulación en la string.
<!DOCTYPE html> <html> <head> <title> JavaScript RegExp \t Metacharacter </title> </head> <body style="text-align:center"> <h1 style="color:green"> GeeksforGeeks </h1> <h2>RegExp \t Metacharacter</h2> <p>Input String: GeeksforGeeks@_123_$</p> <button onclick="geek()"> Click it! </button> <p id="app"></p> <script> function geek() { var str1 = "GeeksforGeeks@_123_$"; var regex4 = /\t/; var match4 = str1.search(regex4); if(match4 == -1) { document.getElementById("app").innerHTML = "No tab character present. "; } else { document.getElementById("app").innerHTML = "Index of tab character: " + match4; } } </script> </body> </html>
Salida:
Antes de hacer clic en el botón:
Después de hacer clic en el botón:
Ejemplo 2: Este ejemplo busca la posición del carácter de tabulación en la string.
<!DOCTYPE html> <html> <head> <title> JavaScript RegExp \t Metacharacter </title> </head> <body style="text-align:center"> <h1 style="color:green"> GeeksforGeeks </h1> <h2>RegExp \t Metacharacter</h2> <p>String: 123ge\teky456</p> <button onclick="geek()"> Click it! </button> <p id="app"></p> <script> function geek() { var str1 = "123ge\teky456"; var regex4 = new RegExp("\\t"); var match4 = str1.search(regex4); document.getElementById("app").innerHTML = " Index of tab character: " + match4; } </script> </body> </html>
Salida:
Antes de hacer clic en el botón:
Después de hacer clic en el botón:
Navegadores compatibles: los navegadores compatibles con RegExp \t Metacharacter se enumeran a continuación:
- Google Chrome
- safari de manzana
- Mozilla Firefox
- Ópera
- explorador de Internet
Publicación traducida automáticamente
Artículo escrito por Vishal Chaudhary 2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA