文件名称:split-on-first:在给定的分隔符首次出现时拆分字符串
文件大小:5KB
文件格式:ZIP
更新时间:2024-04-06 05:50:20
string split npm-package string-manipulation string-split
先分裂 在给定的分隔符首次出现时拆分字符串 这类似于 ,但它会拆分所有出现的内容,而不仅仅是第一个出现的内容。 安装 $ npm install split-on-first 用法 const splitOnFirst = require ( 'split-on-first' ) ; splitOnFirst ( 'a-b-c' , '-' ) ; //=> ['a', 'b-c'] splitOnFirst ( 'key:value:value2' , ':' ) ; //=> ['key', 'value:value2'] splitOnFirst ( 'a---b---c' , '---' ) ; //=> ['a', 'b---c'] splitOnFirst ( 'a-b-c' , '+' ) ; //=> [] splitOnFirst ( 'abc' , '' ) ; //=
【文件预览】:
split-on-first-main
----index.test-d.ts(128B)
----.gitattributes(19B)
----.github()
--------workflows()
----test.js(549B)
----license(1KB)
----index.d.ts(574B)
----.npmrc(19B)
----.editorconfig(175B)
----.gitignore(23B)
----index.js(464B)
----readme.md(908B)
----package.json(694B)