Skip to content

Commit 7da16d5

Browse files
authored
Merge pull request frank-lam#28 from si9ma/patch-1
添加两个快速在线验证正则的网站
2 parents 7b8c57a + 19f406d commit 7da16d5

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

notes/正则表达式.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,11 @@
4949
| *? | *的懒惰模式 | yo*? | y | yo |
5050
| {n} | 重复n次 | yo{2} | yoo | yooo |
5151
| {n,m} | 重复n到m次 | yo{1, 3} | yo,yooo | yoooo |
52-
| {n,} | 重复至少n次 | yo{2,} | yoo, yooo | yo |
52+
| {n,} | 重复至少n次 | yo{2,} | yoo, yooo | yo |
53+
54+
55+
# 正则在线验证
56+
57+
- [RegExr: Learn, Build, & Test RegEx](https://regexr.com/)
58+
59+
- [Online regex tester, debugger with highlighting for PHP, PCRE, Python, Golang and JavaScript](https://regex101.com/)

0 commit comments

Comments
 (0)