📜  typescript 将字符串转换为字符数组 - TypeScript (1)

📅  最后修改于: 2023-12-03 15:05:39.733000             🧑  作者: Mango

TypeScript中将字符串转换为字符数组

在TypeScript中,我们可以使用以下方法将字符串转换为字符数组:

const str = "Hello World";
const arr = Array.from(str);
console.log(arr); // ["H", "e", "l", "l", "o", " ", "W", "o", "r", "l", "d"]

该方法将字符串转换为一个数组,并将该数组中的每个元素设置为字符串中相应位置的字符。

另外,我们还可以使用以下方法将字符串转换为字符数组:

const str = "Hello World";
const arr = str.split("");
console.log(arr); // ["H", "e", "l", "l", "o", " ", "W", "o", "r", "l", "d"]

该方法使用字符串的 split 方法将字符串分割为一个字符串数组,并将每个字符分配给数组中的相应元素。

无论您使用哪种方法,都可以轻松地将字符串转换为字符数组,并进一步处理该数组。