JavaScript

JavaScript基础学习-字符串方法

2017-03-25  本文已影响25人  不是王小贱

String作为一个类,继承了Object中的valueOf()、toLocaleString()和toString()方法,都返回对象所表示的基本字符串值。

String类型的每一个实例都有一个length属性,表示字符串中包含多少个字符。

注意:字符串属性不可编辑,任何试图改变它属性的行为都会报错。

创建方法

字面量创建方式(最常用)

    var str = 'hello world';

实例创建方式

     var str = new String('hello world')

字符串中方法

构造器方法

fromCharCode

返回使用指定的Unicode序列创建的字符串,也就是说传入Unicode序列,返回基于此创建的字符串

语法:fromCharCode(num1, num2,…),传入的参数均为数字。

  String.fromCharCode(65, 66, 67); // "ABC"

只能处理字符都是2个字节的,不能处理4字节字符

fromCodePoint(ES6)

同fromCharCode,扩展了对4字节字符的支持。

String.raw(ES6)

用来充当模板字符串的处理函数,返回一个斜杠都被转义的字符串,对应于替换变量后的模板字符串

字符串的属性

1.字符方法

两个用于访问字符串中特点字符的方法是:charAt()和charCodeAt()。都接受一个参数,一个数字。即基于0的字符位置。

     var str = 'hello world';
     console.log(str.chartAt(0));//'h'
     var str = 'hello world';
     console.log(str.chartCodeAt(1));//'101'
var str = 'hello world';
     console.log(str[0]);//'h'

2.字符串操作方法

    var str = 'hello';
     var res = str.concat(' world','hello');
    console.log(res);//hello worldhello

该方法一般情况下不使用,大部分我们都是使用+号来进行字符串拼接的。

    slice(n,m)/substring(n,m);//表示从索引n截取到m,但不包含m。原字符串不变,返回一个新的字符串

他俩的区别就是当传入的参数为负值时,会不一样。slice()会将传入的负值与字符串的长度相加。而substring()方法会把所有的负值参数都转换为0

3.字符串位置方法

indexOf()和lastIndexOf()。这两个方法都是从一个字符串中搜索给定的子字符串,然后返回子字符串的位置(如果没有找到该子字符串,则返回-1)。可以接受第二个参数,表示从字符串中的哪个位置开始搜索。

区别是:indexOf()方法从字符串的开头向后搜索子字符串,而lastIndexOf()方法是从字符串的末尾向前搜索。

4.trim()方法

该方法返回一个去除首尾空格的新字符串。不兼容

5.字符串大小写转换方法

toLowerCase()、toLocaleLowerCase、toUpperCase()和toLocaleUpperCase()。区别就是带locale的是针对特点地区的实现。使用带locale的会更稳妥一些。

6.字符串的模式匹配方法

     var str = 'hello world';
var res = str.match(/he/);
console.log(res);//[ 'he', index: 0, input: 'hello world' ]

//捕获小分组的内容 在非全局的情况下
  var str = 'hello world';
var res = str.match(/(o)/);
console.log(res);//[ 'o', 'o', index: 4, input: 'hello world' ]
//在全局情况下
  var str = 'hello world';
var res = str.match(/(o)/g);
console.log(res);//[ 'o', 'o' ]

该数组的第一项是符合条件的字符串,第二项是出现在字符串中的位置,最后一项是原始字符串。当在非全局的情况下,可以捕获到小分组中的内容,从第一项往后就是小分组捕获的内容。后两项依然是位置和原始字符串。

在正则是在全局捕获的情况下,match方法的返回值会发生改变,会返回一个符合条件的所有字符串的数组。但无法捕获小分组的内容了就。

如果第一个参数是字符串,那么只会替换到第一个符合的子字符串。

//当第一个参数为字符串的时候。第二个参数是字符串
var str = 'hello world hello world';
var res = str.replace('hello','HELLO');
console.log(res);

//当第一个参数为字符串的时候,第二个参数是函数。结果也是只能替换第一个符合的
var str = 'hello world hello world';
var res = str.replace('hello',function () {
    console.log(arguments);//{ '0': 'hello', '1': 0, '2': 'hello world hello world' }
    return 'HELLO';

});
console.log(res);//HELLO world hello world

如果第一个参数是正则,在非全局情况下也是只替换第一个符合的。在全局情况下会替换掉所有符合条件的字符。

//在非全局的情况下。
  var str = 'hello world hello world';
var res = str.replace(/hello/,function () {
    console.log(arguments);//{ '0': 'hello', '1': 0, '2': 'hello world hello world' }
    return 'HELLO';

});
console.log(res);  //HELLO world hello world
//在全局情况下
var str = 'hello world hello world';
var res = str.replace(/hello/g,function () {
    console.log(arguments);//{ '0': 'hello', '1': 0, '2': 'hello world hello world' }   { '0': 'hello', '1': 12, '2': 'hello world hello world' }
    return 'HELLO';

});
console.log(res);//HELLO world HELLO world
  • 在全局模式下。回掉函数的执行次数,取决与原始字符串中有多少符合捕获正则的内容。arguments拿到的是一个数组。在没有小分组捕获的时候,为三项:1.符合大正则的内容,2.找到对应内容的索引,第三.原始子字符串。在有小分组的时候。小分组的内容从第二项开始。
  var str = 'hello world hello world hello world';
var res = str.split(' ');
console.log(res);//[ 'hello', 'world', 'hello', 'world', 'hello', 'world' ]
//如果原始字符串中没有传进去的分隔符,则将整个字符串放到一个数组中。
var str = 'hello world hello world hello world';
var res = str.split('f');
console.log(res);   //[ 'hello world hello world hello world' ]

7.localeCompare()

8.fromCharCode()方法

是String构造函数上的一个静态方法。作用是接受一或多个字符编码,然后将它们转换成一个字符串。这个方法与charCodeAt()执行的是相反的操作。

转换字符的大小写

trim()

清除字符串首尾的空白并返回

codePointAt(ES6)

返回使用UTF-16编码的给定位置的值得非负整数

includes(ES6)

用来判断一个字符串是否属于另一个字符串,如果是返回true ,反之返回false

语法:str.includes(subString [, position])

subString 表示要搜索的字符串,position 表示从当前字符串的哪个位置开始搜索字符串,默认值为0。

endsWith

它基本与 contains() 功能相同,不同的是,它用来判断一个字符串是否是原字符串的结尾。若是则返回true,否则返回false。

normalize(ES6)

它会按照指定的 Unicode 正规形式将原字符串正规化。

repeat(ES6)

返回重复原字符多次的新字符串

startsWith(ES6)

类似于endsWith。当前字符串是否是以给定字符串开始的

与html相关的方法

anchor

创建一个锚标签

语法:str.anchor(name)

name 指定被创建的a标签的name属性,使用该方法创建的锚点,将会成为 document.anchors 数组的元素。

var str = "this is a anchor tag";
document.body.innerHTML = document.body.innerHTML + str.anchor("anchor1"); // body末尾将会追加这些内容 <a name="anchor1">this is a anchor tag</a>

link

创建一个a标签

语法:str.link(url)

url 指定被创建的a标签的href属性,如果url中包含特殊字符,将自动进行编码。例如 " 会被转义为 &\quot。 使用该方法创建的a标签,将会成为 document.links 数组中的元素。

上一篇下一篇

猜你喜欢

热点阅读