We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Matching Word Boundaries
Matching Word Boundaries
+ 1 comment Can anyone tell me what is the difference between
\D
and[a-zA-Z]
?
+ 0 comments \b[aeiouAEIOU]\D+\b
+ 0 comments JavaScript
/\b[aeiou]+\D+\b/i
+ 0 comments For Python 3
Regex_Pattern = r'\b[aeiouAEIOU][a-zA-Z]*\b'
+ 0 comments JAVAScript Solution
var Regex_Pattern = /\b[aeiouAEIOU][a-zA-z]*\b/; //Do not delete '/'. Replace __________ with your regex.
Load more conversations
Sort 55 Discussions, By:
Please Login in order to post a comment