Lodash - trim 方法
语法
_.trim([string=''], [chars=whitespace])
删除字符串中前导和尾随空白或指定字符。
参数
[string=''] (string) − 要修剪的字符串。
[chars=whitespace] (string) − 要修剪的字符。
输出
(string) − 返回修剪后的字符串。
示例
var _ = require('lodash'); var result = _.trim('__abc__', '_'); console.log(result);
将上述程序保存在 tester.js 中。运行以下命令来执行此程序。
命令
\>node tester.js
输出
abc
lodash_string.htm
广告