Lodash _.startCase() 方法
_.startCase()方法用于转换字符串以开始案例。
句法:
_.startCase( [string=''] )
参数:此方法接受如上所述和如下所述的单个参数:
- 字符串:此参数保存要转换的字符串。
返回值:此方法返回案例字符串的开头。
下面的示例说明了 JavaScript 中的 Lodash _.startCase() 方法:
示例 1:
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Use of _.startCase() method
console.log(_.startCase('geeks for geeks'));
console.log(_.startCase('geeksforgeeks'));
console.log(_.startCase('@#$%geeksforgeeks@#$%'));
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Use of _.startCase() method
console.log(_.startCase(null));
console.log(_.startCase('123456789'));
console.log(_.startCase("gfg.Id"));
输出:
'Geeks For Geeks'
'Geeksforgeeks'
'Geeksforgeeks'
示例 2:
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Use of _.startCase() method
console.log(_.startCase(null));
console.log(_.startCase('123456789'));
console.log(_.startCase("gfg.Id"));
输出:
''
'123456789'
'Gfg Id'