当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Lodash _.toDash()用法及代码示例


Lodash _.toDash()方法用于将骆驼保护套字符串转换为虚线字符串。

用法:

_.toDash( camelCaseString);

参数:该方法采用上面提到并在下面描述的一个参数:

  • camelCaseString:此方法将驼峰式大小写字符串转换为虚线字符串。

返回值:此方法返回转换后的虚线字符串。

注意:由于它需要安装lodash.js contrib库,因此在常规JavaScript中将无法使用。可以使用npm install lodash-contrib来安装Lodash.js contrib库。



范例1:

Javascript

// Defining lodash contrib variable  
var _ = require('lodash-contrib');  
  
var dashst  = _.toDash("geeksForGeeks");  
    
console.log("The converted Dashed String is:", dashst);

输出:

The converted Dashed String is:geeks-for-geeks

范例2:

Javascript

// Defining lodash contrib variable  
var _ = require('lodash-contrib');  
  
var dashst  = _.toDash("aBC");  
    
console.log("The converted Dashed String is:", dashst);

输出:

The converted Dashed String is:a-b-c

相关用法


注:本文由纯净天空筛选整理自AshokJaiswal大神的英文原创作品 Lodash _.toDash() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。