您现在的位置是:课程教程文章
js中字符串位置的搜索方法
2023-12-13 22:49课程教程文章 人已围观
1、indexof方法从字符串开始向后搜索子字符串。
2、lastIndexof方法是从字符串末尾搜索子字符串。
3、trim将创建一个字符串副本,删除前置和后缀的所有空格,然后返回结果。
实例
<scripttype="text/javascript"> varstr="Helloworld!"; document.write(str.indexOf("Hello")+"<br/>"); document.write(str.indexOf("World")+"<br/>"); document.write(str.indexOf("world")); </script>
以上就是js中字符串位置的搜索方法,希望对大家有所帮助。更多js学习指路:js教程
课程教程:js中字符串位置的搜索方法上一篇:python缩进和空格的好处
下一篇:没有了