Regular Expressions 101

Community Patterns

Any string that begins and ends with the same vowel.

0

Regular Expression
PCRE (PHP <7.3)

/
^([aeiou])[a-z]*\1$|^[aeiou]$
/
gm

Description

no description available

Submitted by anonymous - 6 years ago