Dada una string, la tarea es determinar si la string está formada por las mismas substrings o no.
Acercarse:
- Inicializar una string a la variable.
- Use el método test() para probar un patrón en una string.
- El método test() devuelve verdadero si se encuentra una coincidencia; de lo contrario, devuelve falso.
Ejemplo 1: este ejemplo busca la string geeksgeeksgeeks que se compone de la misma substring, por lo que devuelve True.
<!DOCTYPE HTML> <html> <head> <title> How to check a string is entirely made of same substring ? </title> </head> <body style = "text-align:center;"> <h1 style = "color:green;" > GeeksForGeeks </h1> <p id = "GFG_UP" style = "font-size: 16px; font-weight: bold;"> </p> <button onclick = "gfg_Run()"> Click here </button> <p id = "GFG_DOWN" style = "color:green; font-size: 20px; font-weight: bold;"> </p> <script> var el_up = document.getElementById("GFG_UP"); var el_down = document.getElementById("GFG_DOWN"); var str = "geeksgeeksgeeks"; el_up.innerHTML = "Str = '" + str + "'"; function check(str) { return /^(.+)\1+$/.test(str) } function gfg_Run() { ans = "String is not made up of same substrings"; if (check(str)) { ans = "String is made up of same substrings"; } el_down.innerHTML = ans; } </script> </body> </html>
Producción:
- Antes de hacer clic en el botón:
- Después de hacer clic en el botón:
Ejemplo 2: este ejemplo busca la string geeksgeekgeeks que no está compuesta por las mismas substrings, por lo que devuelve False.
<!DOCTYPE HTML> <html> <head> <title> How to check a string is entirely made of same substring ? </title> </head> <body style = "text-align:center;"> <h1 style = "color:green;" > GeeksForGeeks </h1> <p id = "GFG_UP" style = "font-size: 16px; font-weight: bold;"> </p> <button onclick = "gfg_Run()"> Click here </button> <p id = "GFG_DOWN" style = "color:green; font-size: 20px; font-weight: bold;"> </p> <script> var el_up = document.getElementById("GFG_UP"); var el_down = document.getElementById("GFG_DOWN"); var str = "geeksgeekgeeks"; el_up.innerHTML = "Str = '" + str + "'"; function check(str) { return /^(.+)\1+$/.test(str) } function gfg_Run() { ans = "String is not made up of same substrings"; if (check(str)) { ans = "String is made up of same substrings"; } el_down.innerHTML = ans; } </script> </body> </html>
Producción:
- Antes de hacer clic en el botón:
- Después de hacer clic en el botón:
Publicación traducida automáticamente
Artículo escrito por PranchalKatiyar y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA