Blogger Information
Blog 7
fans 0
comment 0
visits 4642
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
独孤九贱 JavaScript 笔记(五) —— 字符方法
残羽的博客
Original
549 people have browsed it

规范:

字符串.方法名(参数表)


例子:

substring(3,2,'php')


常用的操作字符串的函数:

var str = 'PHP中文网'

/* 输出字符串中索引为 3 的字符 */
str.charAt(3)
// 输出:"中"

/* 从头查找字母 p 并 输出 */
str.indexOf('P')    
// 输出:0

/* 从末尾查找字母 p 并 输出 */
str.lastIndexOf('P')    
// 输出:2

/* 第一个3:查询的起始位置;第二个3:向后输出三个字符 */
str.substr(3,3)    
// 输出:"中文网"

/* 第一个3:查询的起始位置;第二个参数:向后输出字符,到字符串长度为止。不包括字符串长度。 */
str.substring(3,str.length)    
//输出:"中文网"

/*  替换操作函数 */
str.replace('PHP','JAVA')    
//输出:"JAVA中文网"


var url = ''

/* 将变量里的英文内容转成大写 */
url.toUpperCase()    
// 输出:"WWW.PHP.CN" 

/* 将变量里的英文内容转成小写 */
url.toLowerCase()    
// 输出:"www.php.cn" 

/* 按照指定要求将字符串切割成数组 */
var urlArray = url.split('.')    
urlArray
// 输出:["www", "php", "cn"]
urlArray[1]
// 输出:"php"


tips:

字符串中的位置索引是从 0 开始的。


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments