标签:col size string 表达 font str 单词 span style
string.match(/((?!hello).)*/)
(?!hello)表示不包含hello,
(?!hello).表示不包含hello的任意字符
正则表达式之特定场景不包含特定单词,如不包含hello
原文地址:https://www.cnblogs.com/szatpig/p/12121062.html