Regex 模型骗局
Regex Pattern Cheatsheet 是一个免费的在线工具,以加快您的开发和破坏工作流
Regex Pattern Cheatsheet
Search a reference of common regular expression tokens.
| . | Any character (except newline) |
| \d | Digit [0-9] |
| \D | Non-digit |
| \w | Word character [a-zA-Z0-9_] |
| \W | Non-word character |
| \s | Whitespace |
| \S | Non-whitespace |
| ^ | Start of string (or line with m flag) |
| $ | End of string (or line with m flag) |
| \b | Word boundary |
| \B | Non-word boundary |
| * | Zero or more |
| + | One or more |
| ? | Zero or one (optional) |
| {n} | Exactly n times |
| {n,} | n or more times |
| {n,m} | Between n and m times |
| [abc] | Any of a, b, or c |
| [^abc] | Not a, b, or c |
| [a-z] | Character range a to z |
| (abc) | Capture group |
| (?:abc) | Non-capturing group |
| a|b | Alternation (a or b) |
| \1 | Backreference to group 1 |
| (?=abc) | Positive lookahead |
| (?!abc) | Negative lookahead |
正则表达式模式备忘单 — 免费、快速,并且可以在浏览器中运行。无需设置,只需打开并开始使用即可。
主要功能
✓
免费在线工具,可立即获得结果
✓
无需注册或注册
✓
专业级精度
✓
适用于所有设备和浏览器
✓
隐私第一:所有处理都在您的浏览器中进行
✓
无限制使用,无任何限制
1
输入输入
在输入字段中输入您的值或数据
2
计算
单击按钮处理您的输入
3
查看结果
立即查看您的结果
4
复制
如果需要,将结果复制到剪贴板
使用场景
→
专业用途
→
快速计算
→
教育目的
→
日常任务
常见问题
这个工具是免费的吗?
是的,完全免费,无需注册。
它可以在手机上使用吗?
是的,它适用于所有设备和浏览器。
我的数据是私人的吗?
是的,所有处理都在您的浏览器本地进行。
Tool Information
分类
Code Web 开发者工具
类型
⚡ 在浏览器中处理
标签