JavaScript String 对象常用方法总结_javascript技巧

PHP中文网
Release: 2016-05-16 15:03:18
Original
1231 people have browsed it

字符串是不可变的。字符串方法,不会改变原有字符串的内容,而是返回一个新字符串。

charAt():返回在指定位置的字符。

concat():连接两个字符串文本,并返回一个新的字符串。

indexOf():indexOf() 方法返回指定值在字符串对象中首次出现的位置。

match():使用正则表达式与字符串相比较。

replace():被用来在正则表达式和字符串直接比较,然后用新的子串来替换被匹配的子串。

slice():摘取一个字符串区域,返回一个新的字符串。

split():通过分离字符串成字串,将字符串对象分割成字符串数组。

substr():返回字符串中从指定位置开始到指定长度的子字符串。

substring():返回字符串两个索引之间(或到字符串末尾)的子串。

与 slice() 和 substr() 方法不同的是,substring() 不接受负的参数。

trim():删除一个字符串两端的空白字符。

以上就是JavaScript String 对象常用方法总结_javascript技巧的内容,更多相关内容请关注PHP中文网(m.sbmmt.com)!


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!