标签:str turn 不包含 fun color cti asc style index
1 function isContains(str, substr) { 2 return str.indexOf(substr) >= 0; 3 }
str为源字符串;
substr为查找的字符;
返回true代表包含,false代表不包含。
使用javascript实现C#的String.contains()
标签:str turn 不包含 fun color cti asc style index
原文地址:https://www.cnblogs.com/xinwenpeng/p/9818698.html