字符串 String
基本数据类型不能改变其值,只能赋值
字符串 - 增
★ concat() // 连接 用于连接两个或多个字符串(同数组)
var a = "hello world";
var b = "good";
var c = a.concat(b);
console.log(c); // hello worldgood
字符串 - 改
★ replace(" "," ") // 替换字符串中的字符(区分大小写) " "会自动转化成Regexp(正则表达式 / /)
var a = "Visit Microsoft!";
var b = a.replace("Microsoft","W3School");
console.log(b); // Visit W3School!
// 要替换不区分大小写,请使用带有/ i标志(不敏感)的正则表达式:
var a = "visit Microsoft!";
var b = a.replace(/MICROSOFT/i, "W3Schools");
console.log(b); // Visit W3School!
★ toUpperCase() // 将字符串转换为大写字母
var a = "Hello World!";
var b = a.toUpperCase();
console.log(b); // HELLO WORLD!
★ toLowerCase() // 将字符串转换为小写字母
var a = "Hello World!";
var b = a.toLowerCase();
console.log(b); // hello world!
字符串 - 查
★ charAt() // 根据index截取一个字符
var a = "hello world";
console.log(a.charAt(0)); // h
★ charCodeAt() // 返回在字符串中指定索引处的字符的Unicode
var a = "hello world";
console.log(a.charCodeAt(0)); // 104
★ indexOf() // 检索字符串的下标index(同数组)
var a = "hello world";
var b = a.indexOf(“h”); // 0; 可接受两个参数,第1个参数为查找内容,第2个参数从哪里开始查找,不能为负值.
var c = a.indexOf(“a”); // -1如果没有返回-1;
★ lastIndexOf() // 从尾部开始检索字符串的下标index
var a = "Please Locate where 'locate' occurs!";
var b = str.lastIndexOf("locate"); // 从尾部开始查找
var c = str.lastIndexOf("Locate",15); // 从15开始倒顺查找
console.log(pos); // 21
console.log(pos1); // 7
★ search() // 查找
var a = "Please locate where 'locate' occurs!";
var b = a.search("locate"); // 与indexOf区别在于,search第二位参数可接受正则表达式
console.log(b); // 7
★ slice(start,end) // 切片 剪切一块区域(同数组)
var a = "hello world";
var b = a.slice(0,2); // 包含第一个,不包含第二个 ;
var c = a.slice(-5,-3) // 可接受负值从末尾切片;
console.log(b); // he
console.log(c); // wo
★ substring(start,stop) // 子串 用于提取字符串中介于两个指定下标之间的字符
var a = "hello world";
var b = a.substring(0,2); // 包含第一个,不包含第二个
console.log(b); // he
★ substr(start,length)
// 参数指定的是子串的开始位置和长度,因此它可以替代 substring() 和 slice() 来使用。
var a = "hello world";
var b = a.substr(0,5); // 包含第一个,不包含第二个
console.log(b); // hello
★ split(separator,howmany) // 分开 用于把一个字符串分割成字符串数组。
var a = "hello";
var b = a.split("");
console.log(b); // ["h","e","l","l","o"]
字符串常用的方法
★ length // 获取字符串的长度(同数组)
var a = "hello world";
console.log(a.length) // 11
// js
<script>
var txt="Hello World!"
document.write("<p>Big: " + txt.big() + "</p>")
document.write("<p>Small: " + txt.small() + "</p>")
document.write("<p>Bold: " + txt.bold() + "</p>")
document.write("<p>Italic: " + txt.italics() + "</p>")
document.write("<p>Blink: " + txt.blink() + " (does not work in IE)</p>")
document.write("<p>Fixed: " + txt.fixed() + "</p>")
document.write("<p>Strike: " + txt.strike() + "</p>")
document.write("<p>Fontcolor: " + txt.fontcolor("Red") + "</p>")
document.write("<p>Fontsize: " + txt.fontsize(16) + "</p>")
document.write("<p>Lowercase: " + txt.toLowerCase() + "</p>")
document.write("<p>Uppercase: " + txt.toUpperCase() + "</p>")
document.write("<p>Subscript: " + txt.sub() + "</p>")
document.write("<p>Superscript: " + txt.sup() + "</p>")
document.write("<p>Link: " + txt.link("http://www.w3school.com.cn") + "</p>")
</script>