Regular Expression
Python
Basic Regex
Character types
\w matches with any alphanumeric character, including underline
. matches to all characters, including symbols (Wildcard)
\d matches to all single digits, 同 [0-9]
\D 非數字的字元,同 [^0-9]
\s matches to all single space, ...