Regular Expressions 101

Community Patterns

start and end of string same english vowel

0

Regular Expression
PCRE2 (PHP >=7.3)

/
^[a].*[a]$|^[e].*[e]$|^[i].*[i]$|^[o].*[o]$|^[u].*[u]$
/

Description

checks the string and matches if it has at start and end same vowel

Submitted by anonymous - 2 years ago