Lodash _.trimEnd() 方法
Lodash 是一个基于 underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、字符串、对象、数字等。
_.trimEnd() 方法用于从给定字符串的末尾删除尾随空格或指定字符。
句法:
_.trimEnd( string, chars )
参数:此方法接受上面提到的两个参数,如下所述:
- 字符串:这是必须修剪的字符串。默认值为空字符串。
- chars:它是一组必须从字符中修剪的字符串。它是一个可选参数。默认值为空格。
返回值:此方法返回修剪后的字符串。
示例 1:
Javascript
// Defining Lodash variable
const _ = require('lodash');
// The string to trim
var str = " Geeks-for-Geeks ";
// Using _.trimEnd() method
console.log(_.trimEnd(str));
Javascript
// Defining Lodash variable
const _ = require('lodash');
// The string to trim
var str = "----GeeksforGeeks----";
// Using _.trimEnd() method
// with specific characters to trim
console.log(_.trimEnd(str, "-"))
输出:
" Geeks-for-Geeks"
示例 2:
Javascript
// Defining Lodash variable
const _ = require('lodash');
// The string to trim
var str = "----GeeksforGeeks----";
// Using _.trimEnd() method
// with specific characters to trim
console.log(_.trimEnd(str, "-"))
输出:
"----GeeksforGeeks"