码迷,mamicode.com
首页 > Web开发 > 详细

js中字符串的操作

时间:2016-11-14 12:42:25      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:indexof   world   substring   var   开始   ring   blog   下标   区间   

1、length

获取字符串长度

var str = "hello world";
alert(str);

2、索引

通过下标获取字符串指定位置的字符,但是不能改变该索引对应的值

var str = "hello world"
alert(str[0]);
str[0] = "H";//不会影响str,但也不会报错

3、toUpperCase

将字符串全部转为大写,并返回原字符串不变

var str = "hello world";
alert(str.toUpperCase());

4、toLowerCase

将字符串全部变小写,并返回原字符串不变

var str = "hello world";
alert(str.toLowerCase());

5、indexOf

搜索指定字符串出现的位置,若没有出现该字符串返回-1

var s = ‘hello, world‘;
alert(s.indexOf(‘world‘)); 
alert(s.indexOf(‘World‘)); 

6、substring

返回指定索引区间的子串,原字符串不变

var s = ‘hello, world‘
alert(s.substring(0, 5));//不包括索引5对应的值
alert(s.substring(7)); //返回从索引7开始到结束的值

 

js中字符串的操作

标签:indexof   world   substring   var   开始   ring   blog   下标   区间   

原文地址:http://www.cnblogs.com/lhyhappy65/p/6061143.html

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