gpt4 book ai didi

javascript - 删除换行符失败

转载 作者:行者123 更新时间:2023-12-03 02:48:18 25 4
gpt4 key购买 nike

我正在尝试删除字符串换行符,我得到了确切的字符串。

这是我的代码

function removeBreaks(string){
let functionString = string.substring(7, string.length);
let cleanFunction = functionString.replace(/\r?\n|\r/gm, '');
console.log(cleanFunction);
}

let string = "dksldt: function (global){\n var o = {id:l._id, z: s, t:o};\n return o; \n} "
removeBreaks(string);


//output: "dhslkf: function (global){\n var o = {id:l._id, z: s, t:o};\n return o; \n}"

但是当我做的时候:

"function (global){\n var o = {id:l._id, z: s, t:o};\n  return o; \n}".replace(/\r?\n|\r/gm, '');
//output: "function (global){ var o = {id:l._id, z: s, t:o}; return o; } "

在控制台中我得到了很好的结果。

最佳答案

看起来你的正则表达式是错误的,因为你忘记在 \n 之前转义斜杠:

functionString.replace(/\r?\\n|\r/gm, '');

关于javascript - 删除换行符失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48007663/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com