String 全局对象是一个用于字符串或一个字符序列的构造函数

语法

字符串字面量

  1. 'string text'
  2. "string text"

String 函数

使用 String 函数将其它值生成或转换为字符串

  1. String(thing)
  2. new string(thing)

thing 任何可以被转换成字符串的值

模板字面量(es6)

  1. `hello world`
  2. `hello ${who}`

长字符串

将长字符串写成多行

一: 使用 + 运算符将多个字符串连接起来

  1. let longString = "This is a very long string which needs" +
  2. "to wrap across multiple lines because" +
  3. "otherwise my code is unreadable.";

二: 在每行末尾使用反斜杠字符(‘\’),确保反斜杠后面没有空格、字符或缩进。

  1. let longString = "This is a very long string which needs \
  2. to wrap across multiple lines because \
  3. otherwise my code is unreadable.";

两种方式会创建相同的字符串。

描述

字符串对于保存以文本形式的数据非常有用。

String 实例

Api

chatAt()

从一个字符串中返回指定索引的字符。

  1. str.charAt(index)

charCodeAt()

返回给定索引处字符的 UTF-16 代码单元值的数字。如索引超出范围,则返回 NaN.

  1. str.charCodeAt(index)

codePointAt()

返回一个Unicaode 编码点的非负整数

  1. str.codePointAt(pos); // pos 这个字符串需要转码的元素的位置

concat()

将一个或多个字符串与原字符串连接合并,形成一个新的字符串并返回。

  1. str.concat(string2, string3[, ..., stringN])
  2. let hello = 'Hello, ';
  3. hello.concat('kevin', ' have a nice day'); // Hello, kevin have a nice day

由于性能问题,强烈建议 赋值操作符(+, +=)代替concat 方法

endsWith()

判断当前字符串是否以另一个给定字符串结尾。返回Boolean

  1. str.endsWidth(searhString [, position])
  2. // searchString 搜索字符串, position str的长度), 默认 str.length
  3. var str = "To be, or not to be, that is the question.";
  4. str.endWith('question.') // true
  5. str.endsWith('to be') // false
  6. str.endsWith('to be', 19) // true

includes()

判断一个字符串是否包含在另一个字符串中, 返回 boolean

  1. // searchString 在 此字符串中搜索的字符串,
  2. // position 从当前字符串的那个索引位置开始搜寻子字符串,默认0
  3. str.includes(searchString[, position])

includes 区分大小写

  1. 'Blue Whale'.includes('blue') // return false
  2. let str = "To be, or not to be, that is the question.";
  3. str.includes('To be') // true
  4. str.includes('question') // true
  5. str.includes('noonexistent') // false
  6. str.includes('To be', 1); // false
  7. str.includes('TO BE'); false

indexOf()

返回调用 String 对象中第一次出现的指定值的索引,在 fromIndex 开始进行搜索。
未找到就返回 -1.

  1. // fromIndex < 0 (如传 0); fromIndex >= str.length, 则返回 -1
  2. str.indexOf(searchValue[, fromIndex])
  3. let strs = "Blue Whale";
  4. strs.indexOf('Blue') // return 0
  5. strs.indexOf("Blute") // return -1
  6. strs.indexOf("Whale", 5) // return 5
  7. strs.indexOf("", 9) // return 9
  8. strs.indexOf("", 10) // return 10
  9. strs.indexOf("", 11) // return 10

区分大小写

  • 被查找的字符串是一个空字符串, fromIndex < 0 时返回0,
  • 0 < fromIndex < str.length 时返回 fromIndex
  • fronIndex > str.length 时返回 str.length

lastIndexOf()

返回指定值在字符串中最后出现的位置,如果没有则返回 -1.

  1. // fromIndex 默认是 str.length; 负值 则被看作是0;
  2. // fromIndex > str.length 则 fromIndex 被看作是 str.length
  3. str.lastIndexOf(searchValue[, fromIndex])

区分小大写

localCompare()

返回一个数字来指示一个参考字符串是否在排序前面或之后或与给定字符串相同。

  1. 'a'.localeCompare('c') // -1
  2. 'check'.localeCompare('against') // 1
  3. 'a'.localCompare('a') // 0

match()

检索返回一个字符串匹配正则表达式的结果。

  1. str.match(regexp)

regexp 一个正则表达式对象,如果传入非正则表达式对象,则会隐式地使用new RegExp(obj) 将其转换为一个 RegExp.如果你没有给出任何参数并直接使用match() ,你将会得到一个包含空字符的Array: [“”]

  1. let str = 'For more information, see Chapter 3.4.5.1'
  2. let re = /see (chapter \d+(\.\d)*)/i
  3. let found = str.match(re)
  4. ["see Chapter 3.4.5.1",
  5. "Chapter 3.4.5.1",
  6. ".1",
  7. index: 22,
  8. input: "For more information,
  9. see Chapter 3.4.5.1",
  10. groups: undefined]

match 使用全局 和 忽略大小写 标志

  1. let str = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'
  2. let regexp = /[A-E]/gi;
  3. let matches_array = str.match(regexp)
  4. // ["A", "B", "C", "D", "E", "a", "b", "c", "d", "e"]

padEnd()

  1. str.padEnd(targetLength [, padString])
  2. // targetLength 当前字符串需要填充到目标长度。 小于当前字符串的长度,则返回当前字符串
  3. // padString 填充字符串,超过目标长度,则只保留最左侧部分。

返回值:
在原字符串末尾填充指定的填充字符串直到达到目标长度的新新字符串。

  1. 'abc'.pandEnd(10) // "abc "
  2. 'abc'.padEnd(10, 'foo') // "abcfoofoof"
  3. 'abc'.padEnd(6, '123456') // 'abc123'
  4. 'abc'.padEnd(1) // 'abc'

padStart()

  1. str.padStart(targetLength [, padString])

返回值:
在原字符串开头填充指定的填充字符串直到目标长度所形成的新字符串。

  1. 'abc'.padStart(10) // " abc"
  2. 'abc'.padStart(10, 'foo') // "foofoofoofabc"
  3. 'abc'.padStart(6, '123456') // '123abc'
  4. 'abc'.padStart(8, '0') // '00000abc'
  5. 'abc'.padStart(1) // 'abc'

repeat()

  1. let resultString = str.repeat(count)
  2. 'abc'.repeat(-1) // 报错
  3. 'abc'.repeat(1) // abc
  4. 'abc'.repeat(2) // abcabc
  5. 'abc'.repeat(3.5) // abcabcabc
  6. 'abc'.repeat(1 / 0) // 报错

replace()

原字符串不会改变

  1. str.replace(regexp|substr, newSubStr|function)

在 replace() 中使用正则表达式

  1. let str = 'Twas the night before Xmas...'
  2. let newStr = str.replace(/xmas/i, 'Christmas')
  3. console.log(newStr) // Twas the nigth before Christmas...
  4. let re = /apple/gi
  5. let str = "Apples are round, and apples are juicy."
  6. let newStr2 = str.replace(re, 'orange')
  7. console.log(newStr2) // "orange are round, and orange are juicy."

交换字符串中的两个单词

  1. let re = /(\w+)\s(\w+)/
  2. let str = "John Smith"
  3. let newStr = str.replace(re, '$2, $1')
  4. console.log(newStr) // Smith John

search()

  1. str.search(regexp)

regexp 正则表达式对象,如果非正则表达式对象 ,会使用new RegExp(obj) 隐式地将其转换位正则表达式对象。

返回值:
匹配成功,则 search() 返回正则表达式在字符串中首次匹配项中的索引。否则,返回 -1

split()

  1. str.split([separator[, limit]])

如果空字符(’’)被用作分隔符,则字符串会在每个字符串之间分割。
separator 可以是一个字符串或正则表达式
limit 一个帧数,限定返回的分割片断。

返回值
返回源字符串以分隔符出现位置分隔而成的一个数组。
当字符串为空,split() 返回一个包含一个空字符串的数组。

  1. let str = ''
  2. str.split() // ['']

移除字符串空格

  1. let names = "Harry Trump ;Fred Barney; Helen Rigby ; Bill Abel ;Chris Hand ";
  2. let namesList1 = names.split(';')
  3. // ["Harry Trump ", "Fred Barney", " Helen Rigby ", " Bill Abel ", "Chris Hand "]
  4. let re = /\s(?:;|$)\s*/
  5. let namesList2 = names.split(re)
  6. // ["Harry Trump", "Fred Barney", "Helen Rigby", "Bill Abel", "Chris Hand", ""]

限制返回值中分割元素数量

  1. let myString = "Hello World. How are you doing?";
  2. let splits = myString.split(" ", 3);
  3. console.log(splits); // ["Hello", "World.", "How"]

捕获括号

  1. let myStringx = "Hello 1 word. Sentence number 2.";
  2. let splitsx = myStringx.split(/(\d)/);
  3. console.log(splitsx); // ["Hello ", "1", " word. Sentence number ", "2", "."]

startsWith()

  1. str.startsWith(searchString [, position])

searchString 要搜索的子字符串
position str 中 开始搜索 searchString 的开始位置,默认值 0

  1. let str = 'To be, or not to be, that is the question.';
  2. str.startsWitch("To be") // true
  3. str.startsWitch("not to be") // false
  4. str.startsWitch('not to be', 10) // true

sbustring()

  1. str.substring(indexStart[, indexEnd])

包左不包右
indexStart > indexEnd 智能调换
任一参数小于 0 或 为NaN , 则这一参数为 0
任一参数大于 string.length , 则被当作 string.length

  1. var anyString = "Mozilla";
  2. // Moz
  3. console.log(anyString.substring(3,-3));
  4. console.log(anyString.substring(3,NaN));
  5. console.log(anyString.substring(-2,3));
  6. console.log(anyString.substring(NaN,3));
  7. //Mozill
  8. console.log(anyString.substring(0,6));
  9. // Mozilla
  10. console.log(anyString.substring(0,10));
  11. console.log(anyString.substring(10,0));
  12. // 空
  13. console.log(anyString.substring(0,0));

toLocaleLowerCase()

  1. 'ALPHABET'.toLocaleLowerCase() // 'alphabet'
  2. '中文简体 zh-CN || zh-Hans'.toLocaleLowerCase() // '中文简体 zh-cn || zh-hans'

toLocaleUpperCase()

  1. 'alphabet'.toLocaleUppercase(); // 'ALPHABET'

toLowerCase()

  1. 'ALPHABET'.toLowerCase() // 'alphabet'
  2. '中文简体 zh-CN || zh-Hans'.toLowerCase() // '中文简体 zh-cn || zh-hans'

toUpperCase()

  1. 'alphabet'.toUpperCase() // ALPHABET

toString()

  1. str.toString()

返回指定对象的字符串形式

  1. let x = new String('Hello world')
  2. console.log(x.toString()) // Hello world

trim()

从一个字符串的两端删除空白字符;不影响原字符串本身,它返回一个新的字符串。

  1. let orig = ' foo '
  2. let newstr = orig.trim(); // 'foo'
  3. let orig = ' foo'
  4. let newstr2 = orig.trim(); // 'foo'

trimRight()

从一个字符串的右端移除空白字符

  1. let str = " foo "
  2. let newStr = str.trimRight() // " foo"

trimStart()

从字符串的开头删除空格

  1. let str = " foo "
  2. let newstr = str.trimStart() // "foo "

valueOf()

返回String 对象的原始值

  1. let x = new String('Hello world')
  2. let strx = x.valueOf() // "Hello world"