文件名称:stringlist:将字符串列表解析为数组
文件大小:4KB
文件格式:ZIP
更新时间:2024-05-23 02:38:11
JavaScript
字串清单 将字符串列表解析为数组。 用法 此模块以列表形式获取字符串,并将其解析为字符串数组 var stringlist = require ( 'stringlist' ) ; stringlist . parse ( 'item, "another item", yet another item' ) ; // [ 'item', 'another item', 'yet another item' ] 原料药 解析中 stringlist . parse ( string , [ options ] ) 返回从输入中解析出的字符串数组。 您可以定义自己的options.delimiter如果不想使用,作为分隔符。 格式 字符串列表接受两种类型的项目 未引用的项目会被修剪并返回,就像它们在输入字符串中一样。 带引号的项目(带有'或" )被视为是javascript字符串。它们不会
【文件预览】:
stringlist-master
----.gitignore(13B)
----README.md(1KB)
----test()
--------stringlist.spec.js(3KB)
----.jshintrc(468B)
----package.json(768B)
----.jshintignore(13B)
----.travis.yml(81B)
----lib()
--------index.js(2KB)