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.
- Prepare
- Regex
- Assertions
- Negative Lookbehind
- Discussions
Negative Lookbehind
Negative Lookbehind
Sort by
recency
|
28 Discussions
|
Please Login in order to post a comment
Java 15:
Regex_Pattern = r"(?
With Python
can also use lookahead r".(?![aeiouAEIOU])"
Regex_Pattern = r"(?<![aeiouAEIOU])."