Lodash - trimEnd 方法



语法

_.trimEnd([string=''], [chars=whitespace])

从字符串中移除尾随空白或指定字符。

参数

  • [string=''] (字符串) − 要修剪的字符串。

  • [chars=whitespace] (字符串) − 要修剪的字符。

输出

  • (字符串) − 返回修剪后的字符串。

示例

var _ = require('lodash');
var result = _.trimEnd('__abc__', '_');

console.log(result);

将上述程序保存在 tester.js 中。运行以下命令来执行此程序。

命令

\>node tester.js

输出

__abc
lodash_string.htm
广告