过滤空格
2024年07月11日
一、认识
空格
包括空格、制表符、换行符。
二、实现
function removeSpacesAndTabs(input) {
// 使用正则表达式替换所有空格、制表符和换行符
return input.replace(/\s/g, '');
}
// 示例用法
let originalString = "This is a\n \ttest string\nwith spaces\tand\ttabs";
let processedString = removeSpacesAndTabs(originalString);
console.log(processedString); // 输出: "Thisisateststringwithspacesandtabs"