标签:indexof world substring var 开始 ring blog 下标 区间
获取字符串长度
var str = "hello world";
alert(str);
通过下标获取字符串指定位置的字符,但是不能改变该索引对应的值
var str = "hello world"
alert(str[0]);
str[0] = "H";//不会影响str,但也不会报错
将字符串全部转为大写,并返回原字符串不变
var str = "hello world";
alert(str.toUpperCase());
将字符串全部变小写,并返回原字符串不变
var str = "hello world";
alert(str.toLowerCase());
搜索指定字符串出现的位置,若没有出现该字符串返回-1
var s = ‘hello, world‘;
alert(s.indexOf(‘world‘));
alert(s.indexOf(‘World‘));
返回指定索引区间的子串,原字符串不变
var s = ‘hello, world‘
alert(s.substring(0, 5));//不包括索引5对应的值
alert(s.substring(7)); //返回从索引7开始到结束的值
标签:indexof world substring var 开始 ring blog 下标 区间
原文地址:http://www.cnblogs.com/lhyhappy65/p/6061143.html