标签:串操作 nbsp search 字符串大小 转换 last ast ase asc
String 类型提供了很多方法,用于辅助完成对ECMAScript 中字符串的解析和操作。
1、字符方法
1)charAt()
2)charCodeAt()
3)方括号+数字
2、字符串操作方法
1)concat()
2)slice()
3)substring()
4)substr()
3、字符串位置方法
1)indexOf()
2)lastIndexOf()
4、trim()方法
1)trim()方法 删除前置及后缀的所有空格
2)trimLeft()、trimRight() [ps:部分浏览器支持]
trimLeft() 删除字符串开头的所有空格
trimRight() 删除字符串末尾的所有空格
5、字符串大小写转换方法
1)toUpperCase()
2)toLowerCase()
3)toLocaleUpperCase()
4)toLocaleLowerCase()
6、字符串的模式匹配方法
1)match()
2)search()
3)replace()
7、localeCompare()
8、fromCharCode()
JavaScript高级程序设计 ———— String类型
标签:串操作 nbsp search 字符串大小 转换 last ast ase asc
原文地址:https://www.cnblogs.com/sherryStudy/p/stringType.html