码迷,mamicode.com
首页 > 编程语言 > 详细

使用javascript实现C#的String.contains()

时间:2018-10-19 22:06:12      阅读:138      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!