We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
聊聊正则的负预测先行断言, 断言此位置的后面不能匹配表达式exp
找出如下字符串中后面不包含有px的数字
const str = '1pt 2px 3em 4px'
正则
/\d(?!px)/g
在线调试