这里涉及到中文和英文字符的混合的字符串比较!
------解决方案--------------------------------------------------------
KMP字符串查找算法
------解决方案--------------------------------------------------------
IndexOf() ?
------解决方案--------------------------------------------------------
instr
------解决方案--------------------------------------------------------
IndexOfAny
或者
正则表达式
------解决方案--------------------------------------------------------
全部转换成unicode,然后判断
------解决方案--------------------------------------------------------
.*(匹配字符串).*
使用正则表达式
------解决方案--------------------------------------------------------
利用正则表达式比较好
regex
------解决方案--------------------------------------------------------
傻瓜才用KMP
------解决方案--------------------------------------------------------
if(str.IndexOf(str2)> 0) there is;
else there is not.