正则表达式
正则表达式(a/b)*c+[^0-9]可匹配下列哪些字符串?不定项1、adc
2、abacc
3、c8
4、abac10 python 是一个都匹配不到
>>> import re
>>> s="(a/b)*c+[^0-9]"
>>> s
'(a/b)*c+[^0-9]'
>>> re.findall(s,"adc")
[]
>>> re.findall(s,"abacc")
['']
>>> re.findall(s,"c8")
[]
>>> re.findall(s,"abac10")
[]
>>>
js 第二个能匹配到但是也得修改一下表达式
vars=/(a\/b)*c+[^0-9]/gm;
txt="adc".match(s);
console.log(txt);
txt="abacc".match(s);
console.log(txt);
txt="c8".match(s);
console.log(txt);
txt="abac10".match(s);
console.log(txt);
PS E:\wp> node app12
null
[ 'cc' ]
null
null
页:
[1]