📜  字符串拆分 javascript 换行符 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:04:21.998000             🧑  作者: Mango

代码示例2
let string = "Hi\nHow are you?"

let newstrings = string.split("\n"); // [ "Hi", "How are you?" ]