re.match:
match from the beginning of the string
re.search:
scan through the whole string to find a match
dash '-' inside square '[]' means a range. put dash in the end to just match a dash
re.match:
match from the beginning of the string
re.search:
scan through the whole string to find a match
dash '-' inside square '[]' means a range. put dash in the end to just match a dash