Skip to content

Commit d9f1393

Browse files
committed
Correct a mistake in Chinese version
1 parent 40f1207 commit d9f1393

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: translations/README-zh-simple.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
## 什么是正则表达式?
3636

3737
[![](https://img.shields.io/badge/-Download%20PDF%20-0a0a0a.svg?style=flat&colorA=0a0a0a)](https://gum.co/learn-regex)
38-
38+
3939
> 正则表达式是一组由字母和符号组成的特殊文本, 它可以用来从文本中找出满足你想要的格式的句子.
4040
4141

@@ -468,7 +468,7 @@
468468

469469
像之前介绍的 `(^,$)` 用于检查格式是否是在待检测字符串的开头或结尾. 但我们如果想要它在每行的开头和结尾生效, 我们需要用到多行修饰符 `m`.
470470

471-
例如, 表达式 `/at(.)?$/gm` 表示在待检测字符串每行的末尾搜索 `at`后跟一个或多个 `.` 的字符串, 并返回全部结果.
471+
例如, 表达式 `/at(.)?$/gm` 表示在待检测字符串每行的末尾搜索 `at`后跟0个或1个 `.` 的字符串, 并返回全部结果.
472472

473473
<pre>
474474
"/.at(.)?$/" => The fat

0 commit comments

Comments
 (0)