Python正则表达式如何只匹配字母或者数字
pattern = r'[(0-9) | (a-zA-Z)]+'
这里一直写不对
收起
当前问题酬金
¥ 0 (可追加 ¥500)
支付方式
扫码支付
支付金额 15 元
提供问题酬金的用户不参与问题酬金结算和分配
支付即为同意 《付费问题酬金结算规则》
import re compileX = re.compile(r"[a-zA-Z0-9]") x = compileX.findall("$send 1234 to me") print(x)
报告相同问题?