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

JavaScript中的String对象

时间:2014-06-19 00:51:39      阅读:243      评论:0      收藏:0      [点我收藏+]

标签:style   class   java   http   ext   color   

 

 
 
String对象提供的方法用于处理字符串及字符。
常用的一些方法:
charAt(index):返回字符串中index处的字符。
indexOf(searchValue,[fromIndex]):该方法在字符串中寻找第一次出现的searchValue。如果给定了fromIndex,则从字符串内该位置开始搜索,当searchValue找到后,返回该串第一个字符的位置。
lastIndexOf(searchValue,[fromIndex]):从字符串的尾部向前搜索searchValue,并报告找到的第一个实例。
substring(indexA,indexB):获取从indexA到indexB的子串
toLowerCase():将字符串中的所有字符全部转换成小写
toUpperCaser():将字符串中的所有字符全部转换为大写

JavaScript中的String对象,布布扣,bubuko.com

JavaScript中的String对象

标签:style   class   java   http   ext   color   

原文地址:http://www.cnblogs.com/fengyv/p/3789606.html

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