TypeScript 字串的求是否以指定字符串結尾(endsWith)

TypeScript 是一種 JavaScript 的超集,它擁有更多的功能,其中之一就是支援字串的求是否以指定字符串結尾(endsWith)。這個功能可以讓開發者更容易地檢查字串是否以指定的字符串結尾,而不需要使用正規表達式。

在 TypeScript 中,可以使用 endsWith() 方法來檢查字串是否以指定的字符串結尾。它接受兩個參數,第一個參數是要檢查的字串,第二個參數是要檢查的字符串。如果字串以指定的字符串結尾,則返回 true,否則返回 false

舉個例子,假設我們有一個字串 “Hello World”,我們可以使用 endsWith() 方法來檢查它是否以 “World” 結尾:

let str = "Hello World";
let result = str.endsWith("World");

console.log(result); // true

另外,endsWith() 方法還可以接受第三個參數,用於指定要檢查的字串長度。舉個例子,假設我們有一個字串 “Hello World”,我們可以使用 endsWith() 方法來檢查它是否以 “World” 結尾,並且只檢查前 5 個字符:

let str = "Hello World";
let result = str.endsWith("World", 5);

console.log(result); // false

總結來說,endsWith() 方法可以讓開發者更容易地檢查字串是否以指定的字符串結尾,而不需要使用正規表達式。

Categorized in:

Tagged in: