Python regular expression not matching

match only matches from the beginning of the string. Your code works fine if you do pct_re.search(line) instead.

Leave a Comment