how can i determine if a given character sequence matches my regex,
completely?
in java for example I can do,
Pattern.compile (regex).matcher (input).matches ()
this returns True/False whether or not input matches the regex
completely.
is there a matches in python?
completely?
in java for example I can do,
Pattern.compile (regex).matcher (input).matches ()
this returns True/False whether or not input matches the regex
completely.
is there a matches in python?
Comment