JavaScript 教程 - 字符串
Jinku Hu
2023年10月12日
字符串是文本的集合,我们必须将字符串用引号引起来。
JavaScript 字符串串联
我们可以与运算符连接两个字符串 +
。
var exampleString = 'Hello ' +
'World'; // "Hello World"
字符串连接也可以在字符串和数字之间进行。
var x = 'My age is ' + 27; // "My age is 27".
字符串方法
字符串是对象,就像 JavaScript 中的任何其他对象一样。它们具有方法和属性。
JavaScript 字符串长度属性
字符串的长度是该字符串中的字符数。
var stringExample = 'String Example';
console.log(stringExample.length)
// It will return 14
string.length
属性返回字符串的长度。
JavaScript 字符串 UpperCase / LowerCase 方法
string.toUpperCase()
和 string.toLowerCase()
方法将字符串中的每个字符转换为大写或小写。
> var stringExample = 'String Example';
> console.log(stringExample.toUpperCase())
STRING EXAMPLE > console.log(stringExample.toLowerCase())
string example
JavaScript indexOf
方法
indexOf
方法将在此字符串中找到任何特定字母或短语的索引。
> var stringExample = 'String Example Index';
> console.log(stringExample.lastIndexOf('Example'))
7 > console.log(stringExample.lastIndexOf('example')) - 1
indexOf
方法返回第一个索引,在该索引处找到字符串中的给定子字符串。
如果在字符串中找不到短语或字母,它将返回 -1
表示该字符串中不存在子字符串。
JavaScript 字符串比较方法
> var stringExample1 = 'ABC';
> var stringExample2 = 'abc';
> console.log(stringExample1 == stringExample2)
false > var stringExample3 = 'ABC';
> console.log(stringExample1 == stringExample3)
true
==
运算符以区分大小写(大小写敏感)的方式比较两个字符串是否相等。
<
运算符比较字母表中第一个字符串中的第一个字符是否在第二个字符串中的第一个字符之前。
> var stringExample1 = 'CDE';
> var stringExample2 = 'dcd';
> console.log(stringExample1 < stringExample2)
true > var stringExample2 = 'Dcd';
> console.log(stringExample1 < stringExample2)
true > var stringExample2 = 'BCD';
> console.log(stringExample1 < stringExample2)
false
<
操作符是不区分大小写,因此,"CDE" < "DEF"
并且 "CDE" < "def"
。
与 <
类似,>
运算符检查第一个字符串中的第一个字符是否在字母表中第二个字符串中的第一个字符之后。
> var stringExample1 = 'CDE';
> var stringExample2 = 'BCD';
> console.log(stringExample1 > stringExample2)
true > var stringExample2 = 'bcd';
> console.log(stringExample1 > stringExample2)
true > var stringExample2 = 'DEF';
> console.log(stringExample1 > stringExample2)
false