You are viewing a single comment's thread. Return to all comments →
either of these would do
regex_pattern = r"^(.{3}\.){3}.{3}$" # Do not delete 'r'. regex_pattern = r"^...\....\....\....$"
Seems like cookies are disabled on this browser, please enable them to open this website
Matching Anything But a Newline
You are viewing a single comment's thread. Return to all comments →
either of these would do