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

js 字符串

时间:2015-05-20 00:03:10      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:

1 。string 对象可以处理已有的字符窜对象
// 字符串可以用单引号或双引号
// 2。字符串中查找字符串:indexof()
var str1 ="hello world";
//字符串所在位置 不存在返回-1
document.write(str1.indexOf("worls"));
//字符串长度
document.write("字符串长度:"+str1.length+"<br/>");
//将字符串内容替换掉
document.write(str1.replace("world","zefeng"+"<br/>"));
//字符串大小写的替换
document.write(str1.toUpperCase());//全部大写
document.write(str1.toLocaleLowerCase());
//字符串转换为数组
var str ="z,fffffff,e,x";
var s=str.split(",");//以“,”为分隔符
document.write(s[1]);


document.write(str1.prototype);
document.write(str.constructor);

document.write()


</script>

技术分享

js 字符串

标签:

原文地址:http://www.cnblogs.com/xiezefeng/p/4515708.html

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