我需要计算包含非英文字符、标点符号等特殊字符或单词开头或中间的数字的单词。我试图用它来做re
,现在看起来像
begin_searcher = re.compile(r'[0-9]+[\w\-]')
middle_searcher = re.compile(r'[\w\-]+[0-9]+[\w\-]')
both_searcher = re.compile(r'[0-9]+[\w\-]+[0-9]+[\w\-]')
但它完全错误。哪位知道re
我的好,请帮忙。
我需要计算这个:
'asfas1254asffas'
'125safasffa'
'asd!asfg'
'asff#dasf'
'sex!!!!'
'safщовфау'
ETC