Lodash - trimStart 方法



语法

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

从字符串中移除前导空白或指定的字符。

参数

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

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

输出

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

示例

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

console.log(result);

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

命令

\>node tester.js

输出

abc__
lodash_string.htm
广告