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
?= 'abcacad'.replace(/a(?=b)/g,'*') //*bcacad
'abcacad'.replace(/a(?!b)/g,'*') //abc*c*d
let str="123456789"; let re=/(?=(?!(\b))(\d{3})+$)/g str=str.replace(re, ",") console.log(str)
\b 是单词边界
\b
The text was updated successfully, but these errors were encountered:
No branches or pull requests
前向声明
反前向声明
\b
是单词边界The text was updated successfully, but these errors were encountered: