Lodash _.trimEnd
_.trimEnd([string=''], [chars=whitespace])
从string字符串中移除后面的 空格 或 指定的字符。
添加版本
4.0.0
参数
- [string=''] (string): 要处理的字符串。
- [chars=whitespace] (string): 要移除的字符。
返回
(string): 返回处理后的字符串。
例子
_.trimEnd(' abc ');
// => ' abc'
_.trimEnd('-_-abc-_-', '_-');
// => '-_-abc'