You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Positive lookaheads are useful to control the max length with predictable results. For example, multiple "words" that do not end with a whitespace with a max len of 11
^(?=.{2,11}$)[a-zA-Z]+([ -][a-zA-Z]+)*$
The text was updated successfully, but these errors were encountered:
Positive lookaheads are useful to control the max length with predictable results. For example, multiple "words" that do not end with a whitespace with a max len of 11
The text was updated successfully, but these errors were encountered: