我想格式化一个没有多个空格的字符串。字符串可以具有制表符、回车符或换行符。
示例 1:expacted 结果:hello
world
hello
world
示例 2:预期结果:“hello world”hello world
const formatString = (s) => {
const trimmed = s.trim();
const formated = trimmed.match(/\s/g)
return s.trim().replace(/\s+/g, ' ')
}
const str = `hello
world`
const result = formatString(str)
console.log(result)
四季花海
相关分类