We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
聊聊正则的负预测先行断言, 断言此位置的后面不能匹配表达式exp
找出如下字符串中后面不包含有px的数字
const str = '1pt 2px 3em 4px'
正则
/\d(?!px)/g
在线调试
The text was updated successfully, but these errors were encountered:
No branches or pull requests
零宽断言之负预测先行断言(?!exp)用法
示例
找出如下字符串中后面不包含有px的数字
正则
/\d(?!px)/g
在线调试
The text was updated successfully, but these errors were encountered: