📜  修剪字符串的JavaScript程序

📅  最后修改于: 2020-09-27 05:35:36             🧑  作者: Mango

在这个例子中,您将学习编写一个修整字符串的JavaScript程序。

示例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检查字符串开头和结尾的空格。