Lodash

是一个一致性、模块化、高性能的 JavaScript 实用工具库。

“String” Methods

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

string字符串中移除后面的 空格 或 指定的字符。

添加版本

4.0.0

参数

  1. [string=''] (string): 要处理的字符串。
  2. [chars=whitespace] (string): 要移除的字符。

返回

(string): 返回处理后的字符串。

例子

_.trimEnd('  abc  ');
// => '  abc'
 
_.trimEnd('-_-abc-_-', '_-');
// => '-_-abc'

数组 Array

集合 Collection

日期 Date

函数 Function

Lang

数学 Math

数字 Number

对象 Object

Seq

字符串 String

实用函数 Util

Properties

Methods