Answers for "match a string that starts and ends with the same vowel"

0

match a string that starts and ends with the same vowel

const regex = /\b(?<vowel>[aeiou])(\w*\k<vowel>)?\b/
Posted by: Guest on October-05-2020

Code answers related to "match a string that starts and ends with the same vowel"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language