From 807c7071aaee4cb4ed084b9afd5cb5ba7b1c0717 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B0=AD=E4=B9=9D=E9=BC=8E?= <109224573@qq.com> Date: Mon, 7 Oct 2019 11:17:00 +0800 Subject: [PATCH] Update zh-CN --- translations/README-cn.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/translations/README-cn.md b/translations/README-cn.md index 6cce5de..c885630 100644 --- a/translations/README-cn.md +++ b/translations/README-cn.md @@ -179,7 +179,7 @@ ### 2.3.1 `*` 号 `*`号匹配 在`*`之前的字符出现`大于等于0`次. -例如, 表达式 `a*` 匹配以0或更多个a开头的字符, 因为有0个这个条件, 其实也就匹配了所有的字符. 表达式`[a-z]*` 匹配一个行中所有以小写字母开头的字符串. +例如, 表达式 `a*` 匹配0或更多个以a开头的字符. 表达式`[a-z]*` 匹配一个行中所有以小写字母开头的字符串.
"[a-z]*" => The car parked in the garage #21. @@ -199,7 +199,7 @@ ### 2.3.2 `+` 号 `+`号匹配`+`号之前的字符出现 >=1 次. -例如表达式`c.+t` 匹配以首字母`c`开头以`t`结尾,中间跟着任意个字符的字符串. +例如表达式`c.+t` 匹配以首字母`c`开头以`t`结尾,中间跟着至少一个字符的字符串."c.+t" => The fat cat sat on the mat.