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
正则表达式在线工具:https://regexper.com
在量词后面加上?即可
使用**()**可以达到分组的功能,使量词作用于分组
使用**|**可以达到或的效果
不希望捕获某些分组,只需要在分组内加上?:就可以了
The text was updated successfully, but these errors were encountered:
No branches or pull requests
正则表达式在线工具:https://regexper.com
修饰符
元字符
字符类
字符类取反
范围类
预定意类
边界
量词
贪婪模式
非贪婪模式
在量词后面加上?即可
分组
使用**()**可以达到分组的功能,使量词作用于分组
或
使用**|**可以达到或的效果
反向引用
忽略分组
不希望捕获某些分组,只需要在分组内加上?:就可以了
前瞻
对象属性
RegExp.prototype.test(str)
RegExp.prototype.exec(str)
非全局调用
String.prototype.search(reg)
String.prototype.match(reg)
String.prototype.split(reg)
String.prototype.replace
The text was updated successfully, but these errors were encountered: