我正在使用这个SO中的 RegExp来缩短字符串而不削减单词。不幸的是,当测试字符串中有换行符时,这不起作用。有没有办法在不删减单词的情况下缩短字符串以及在第一个换行符之后。
"this is a longish string of \n\n test".replace(/^(.{11}[^\s]*).*/, "$1");
//Expected output: "this is a longish"
//Actual output: "this is a longish test"
我正在使用这个SO中的 RegExp来缩短字符串而不削减单词。不幸的是,当测试字符串中有换行符时,这不起作用。有没有办法在不删减单词的情况下缩短字符串以及在第一个换行符之后。
"this is a longish string of \n\n test".replace(/^(.{11}[^\s]*).*/, "$1");
//Expected output: "this is a longish"
//Actual output: "this is a longish test"