文件名称:percentage-regex:正则表达式以匹配百分比值
文件大小:4KB
文件格式:ZIP
更新时间:2024-05-23 12:09:27
JavaScript
正则表达式百分比 正则表达式以匹配百分比值 安装 $ npm install --save percentage-regex 用法 const percentageRegex = require ( 'percentage-regex' ) ; 'I am 99% sure that was a unicorn' . match ( percentageRegex ( ) ) ; //=> ['99%'] 'I had 83% for maths and 68% for French' . match ( percentageRegex ( ) ) ; //=> ['83%', '68%'] percentageRegex ( { exact : true } ) . test ( '88%' ) ; //=> true 原料药 percentRegex(选项) 返回用于匹配百分比值的
【文件预览】:
percentage-regex-master
----.gitignore(13B)
----package.json(597B)
----.travis.yml(74B)
----index.js(195B)
----test.js(1KB)
----license(1KB)
----readme.md(864B)
----.gitattributes(12B)
----.editorconfig(231B)