http://www.vaikan.com/regular-expression-to-match-string-not-containing-a-word/ 经常我们会遇到想找出不包含某个字符串的文本,程序员最容易想到的是在正则表达式里使用, ^(hede) 来过滤”hede”字串,但这种写法是错误的. 我们可以这样写: [^hede] ,但这样的正则表达式完全是另外一个意思,它的意思是字符串里不能包含 ‘h’,‘e’,‘d’三个但字符.那什么样的正则表达式能过滤出不包含完整“hello”字串…