From ceb3d3bd74601f72d381fa9c993eae2157dc8cbc Mon Sep 17 00:00:00 2001 From: cuiyaocy Date: Wed, 1 Apr 2020 09:29:09 +0800 Subject: [PATCH] modify the desc of {n,m} --- translations/README-cn.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/translations/README-cn.md b/translations/README-cn.md index 55984ea..6ff3f4f 100644 --- a/translations/README-cn.md +++ b/translations/README-cn.md @@ -119,7 +119,7 @@ |*|匹配>=0个重复的在*号之前的字符。| |+|匹配>=1个重复的+号前的字符。 |?|标记?之前的字符为可选.| -|{n,m}|匹配num个大括号之间的字符 (n <= num <= m).| +|{n,m}|匹配num个大括号之前的字符或字符集 (n <= num <= m).| |(xyz)|字符集,匹配与 xyz 完全相等的字符串.| |||或运算符,匹配符号前或后的字符.| |\|转义字符,用于匹配一些保留的字符 [ ] ( ) { } . * + ? ^ $ \ ||