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