当前位置:网站首页 > Vue.js开发 > 正文

js 判断字符串中是否包含某个字符串 删除指定字符

usage.indexOf("init") != -1
/*方法一:使用replace函数替换*/ //去除字符串中含有的某字符串:str = str.replace('give', ''); var str = 'Could you please give me a simple example of how to'; console.log("str=======前==" + str);//str=======前==Could you please give me a simple example of how to //注意:此处不可写作:str.replace('give', '');要写作:str = str.replace('give', ''); // replace:返回新的字符串,一定要重新接收,不然替换不了 str = str.replace('give', '');//去掉字符的位置不定,可能在字符串中间,也可能在末尾 console.log("str.replace('give', '')==" + str.replace('give', '')); //str.replace('give', '')==Could you please me a simple example of how to console.log("str=======后==" + str);//str=======后==Could you please me a simple example of how to /*方法二:使用字符串分割函数再聚合*/ var str = "hello world!"; var items = str.split("o"); //会得到一个数组,数组中包括利用o分割后的多个字符串(不包括o) var newStr = items.join("");//数组转成字符串,元素是通过指定的分隔符进行分隔的。此时以空串分割:即直接连接 console.log("newStr=====" + newStr);// newStr=====hell wrld! //会得到一个新字符串,将数组中的数组使用空串连接成一个新字符串

 

到此这篇js 判断字符串中是否包含某个字符串 删除指定字符的文章就介绍到这了,更多相关内容请继续浏览下面的相关推荐文章,希望大家都能在编程的领域有一番成就!

版权声明


相关文章:

  • VUE实现拖拽2024-11-29 22:36:09
  • JS根据条件将扁平数组树状化2024-11-29 22:36:09
  • JS阻止鼠标的默认点击事件(例如鼠标的点击右键)2024-11-29 22:36:09
  • vue递归组件实现多级列表2024-11-29 22:36:09
  • Vue-Axios用delete请求传formData2024-11-29 22:36:09
  • JS递归实现遍历不规则多维数组的方法2024-11-29 22:36:09
  • VUE读取svg文件 修改svg图标颜色 base64编码图标路径并展示2024-11-29 22:36:09
  • vue获取使用封装的函数返回值2024-11-29 22:36:09
  • VUE项目通过ip访问前端页面的相关配置2024-11-29 22:36:09
  • VUE实现父子组件传值以及递归组件的传值2024-11-29 22:36:09
  • 全屏图片