diff --git a/README.md b/README.md index d27e8387..0a804777 100644 --- a/README.md +++ b/README.md @@ -478,7 +478,7 @@ regular expression `(?<=(T|t)he\s)(fat|mat)` means: get all `fat` or `mat` words from the input string that come after the word `The` or `the`.
-"(?<=(T|t)he\s)(fat|mat)" => The fat cat sat on the mat.
+"(?<=(T|t)he\s)(fat|mat)" => The fat cat sat on the mat.
 
[Test the regular expression](https://regex101.com/r/avH165/1) diff --git a/translations/README-cn.md b/translations/README-cn.md index c8925d1d..5b61f7cb 100644 --- a/translations/README-cn.md +++ b/translations/README-cn.md @@ -65,7 +65,7 @@ * [2.2 字符集](#22-字符集) * [2.2.1 否定字符集](#221-否定字符集) * [2.3 重复次数](#23-重复次数) - * [2.3.1 * 号](#231--号) + * [2.3.1 \* 号](#231--号) * [2.3.2 + 号](#232--号) * [2.3.3 ? 号](#233--号) * [2.4 {} 号](#24--号) @@ -429,7 +429,7 @@ 例如,表达式 `(?<=(T|t)he\s)(fat|mat)` 匹配 `fat` 和 `mat`,且其前跟着 `The` 或 `the`。
-"(?<=(T|t)he\s)(fat|mat)" => The fat cat sat on the mat.
+"(?<=(T|t)he\s)(fat|mat)" => The fat cat sat on the mat.
 
[在线练习](https://regex101.com/r/avH165/1)