I'm trying to use the re.match() method to check if my string looks like the regular expression.
In UNIX on the cmd line I'd use "*,*" to check against a string such as, hello,there.
The following python doesn't work, what is there to change?
# line is just some string
if re.match(r'*,*', line):
# do something
*,*would be.*,.*as a regex.