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
A minor feature request: for String validation with a regex, re.fullmatch is more often going to be what we want to use than re.match. It would be nice to provide a way to do that full match.
The text was updated successfully, but these errors were encountered:
Actually, the needs might be better served by a way to plug in a general validation function, or at least documentation of how to easily subclass the Str trait type to add such validation.
A minor feature request: for
String
validation with a regex,re.fullmatch
is more often going to be what we want to use thanre.match
. It would be nice to provide a way to do that full match.The text was updated successfully, but these errors were encountered: