split-at:在一个或多个索引处分割字符串

时间:2024-06-01 03:14:27
【文件属性】:

文件名称:split-at:在一个或多个索引处分割字符串

文件大小:5KB

文件格式:ZIP

更新时间:2024-06-01 03:14:27

JavaScript

分拆 在一个或多个索引处分割字符串 安装 $ npm install split-at 用法 import splitAt from 'split-at' ; splitAt ( 'unicorn' , 2 ) ; //=> ['uni', 'corn'] splitAt ( 'unicorn' , - 2 ) ; //=> ['unico', 'rn'] splitAt ( 'unicorn&rainbow' , [ 6 , 7 ] ) ; //=> ['unicorn', '&', 'rainbow'] splitAt ( 'unicorn&rainbow' , 7 , { remove : true } ) ; //=> ['unicorn', 'rainbow'] 原料药 splitAt(字符串,索引,选项?) 细绳 类型: string 要分割的字符串。 指数 类型: numb


【文件预览】:
split-at-main
----index.js(683B)
----test.js(1KB)
----package.json(789B)
----index.test-d.ts(239B)
----readme.md(1KB)
----.github()
--------workflows()
----license(1KB)
----index.d.ts(979B)
----.gitignore(23B)
----.npmrc(19B)
----.editorconfig(175B)
----.gitattributes(19B)

网友评论