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
- Repetitions
- Matching Ending Items
- Discussions
Matching Ending Items
Matching Ending Items
Sort by
recency
|
93 Discussions
|
Please Login in order to post a comment
why did + did not work? why must it be *? The rules are not clear?
^(?i:[a-z])+s$
Write a RegEx to match a test string, , under the following conditions:
should consist of only lowercase and uppercase letters (no numbers or symbols). should end in s.
===========================
Java 15
Works on Python 3.6 and newer: