Ejemplo 1: emparejar una cadena que comienza y termina con la misma vocal
const regex = /b(?<vowel>[aeiou])(w*k<vowel>)?b/
Ejemplo 2: Encuentra una vocal al principio y termina con una expresión regular
// ^ => first item matches:
// () => stores matching value captured within
// [aeiou] => matches any of the characters in the brackets
// . => matches any character:
// + => for 1 or more occurrances (this ensures str length > 3)
// 1 => matches to previously stored match.
// 2 looks for matched item stored 2 instances ago
// 3 looks for matched item stored 3 ago, etc
// $ ensures that matched item is at end of the sequence
let re = /^([aeiou]).*1$/i;
return re;
}
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)