utils-regex-from-string:解析正则表达式字符串并返回新的正则表达式

时间:2024-06-02 13:54:28
【文件属性】:

文件名称:utils-regex-from-string:解析正则表达式字符串并返回新的正则表达式

文件大小:9KB

文件格式:ZIP

更新时间:2024-06-02 13:54:28

JavaScript

正则表达式 解析一个字符串并返回一个新的。 安装 $ npm install utils-regex-from-string 用法 var regex = require ( 'utils-regex-from-string' ) ; 正则表达式(str) 解析一个string并返回一个新的。 var re = regex ( '/beep/' ) // returns /beep/ 注意:提供的strings必须正确转义。 // Unescaped: re = regex ( '/\w+/' ) ; // returns /w+/ // Escaped: re = regex ( '/\\w+/' ) ; // returns /\w+/ 例子 var regex = require ( 'utils-regex-from-string' ) ; console . log


【文件预览】:
utils-regex-from-string-master
----.jshintrc(1KB)
----.gitattributes(12B)
----.jshintignore(118B)
----lib()
--------index.js(757B)
----.npmignore(498B)
----examples()
--------index.js(522B)
----TODO.md(11B)
----.travis.yml(143B)
----LICENSE(1KB)
----test()
--------test.js(2KB)
----README.md(4KB)
----Makefile(2KB)
----.editorconfig(169B)
----.gitignore(1KB)
----package.json(1KB)

网友评论