文件名称:string-split.js:柯里化的 `String.prototype.split` 支持按字符串、RegExp 或函数进行拆分
文件大小:6KB
文件格式:ZIP
更新时间:2024-06-25 15:43:16
JavaScript
字符串拆分 柯里化的String.prototype.split支持按字符串、正则表达式或函数进行拆分。 npm install string-split --save npm 统计信息 例子 要求 var split = require ( 'string-split' ) ; 完整的应用程序 split ( "." , "example.com" ) ; //=> ["example", "com"] 部分应用 var undot = split ( '.' ) undot ( 'example.com' ) ; //=> ["example", "com"] 迭代器 var transform = split ( "::" ) ; var foodtypes = [ "Entree::Seafood" , "Entree::Chicken" ] ; foodtypes . m
【文件预览】:
string-split.js-master
----.gitattributes(12B)
----contributing.md(1KB)
----test.js(1KB)
----license(1KB)
----.travis.yml(72B)
----.editorconfig(283B)
----.gitignore(44B)
----index.js(1KB)
----readme.md(2KB)
----package.json(1KB)
----changelog.md(734B)