Python正则表达式:字符集及内部顺序
1.基础内容[] (中括号)用于描述正则表达式中的字符集,可以通过向字符集内部输入字符来自定义匹配的内容。import reregex1 = re.compile('[ABC]')message1 = "Hello. This is ABC club. A man will serve you then."print(regex1.findall(message1))输出:[‘A’...