Bienvenido a nuestra página web, aquí encontrarás la respuesta que andabas buscando.
Ejemplo: línea de inicio de expresión regular
// Match from the start of the line^//example:
let str ="HELLO hello world"
let reg =/hello/g //g option: doesn't stop at first match
str.match(reg)// Array(2)["HELLO", "hello"]
reg =/^hello/g //match hello at the start of the string
str.match(reg)// Array(1)["HELLO"]
Si guardas alguna incertidumbre y capacidad de ascender nuestro artículo te recomendamos escribir un exégesis y con gusto lo ojearemos.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)