JS中字符串trim()使用示例
简介
trim() 方法用于删除字符串的头尾空白符(包括空格、制表符、换行符等等),返回值是一个新的字符串。trim() 方法不改变原始字符串。
用法
语法:
stringObject.trim()
示例1 - 去除字符串头尾空格
下面这段代码演示了如何使用trim()方法去掉字符串头尾的空格:
let str1 = " hello world! ";
console.log(str1.trim()); //结果为: "hello world!"
在该示例中,字符串 " hello world! " 两边都有空格。我们使用 trim() 方法去掉这两个空格并返回新字符串 "hello world!"。
示例2 - 去除换行符
下面这段代码演示了如何使用trim()方法去掉换行符:
let str2 = "\nhello world!\n";
console.log(str2.trim()); //结果为: "hello world!"
在该示例中,字符串 "\nhello world!\n" 头尾都有换行符。我们使用 trim() 方法去掉这两个换行符并返回新字符串 "hello world!"。
总结
使用 trim() 方法可以方便地删除字符串头尾的空格和其他空白字符,从而使得我们的字符串更加美观、易于处理。
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:JS中字符串trim()使用示例 - Python技术站