示例1:修剪字符串
// program to trim a string
const string = ' Hello World ';
const result = string.trim();
console.log(result);
输出
Hello World
在上面的示例中, trim()
方法用于修剪字符串。
trim()
方法删除字符串两侧的空白。
示例2:使用RegEx修剪字符串
// program to trim a string
function trimString(x) {
let trimValue = x.replace(/^\s+|\s+$/g,'');
return trimValue;
}
let result = trimString(' Hello world ');
console.log(result);
输出
Hello World
在上面的程序中,RegEx与replace()
方法一起使用以修剪字符串。
/^\s+|\s+$/g
检查字符串开头和结尾的空格。