From 4ad654092dd638d7c950aee8334e4d75d78444de Mon Sep 17 00:00:00 2001 From: AndyZ Date: Tue, 15 Aug 2017 03:55:31 +0800 Subject: [PATCH] Change a bit on . some typo corrected --- README-cn.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README-cn.md b/README-cn.md index 6081c7a..9738aad 100644 --- a/README-cn.md +++ b/README-cn.md @@ -259,7 +259,7 @@ 反斜线 `\` 在表达式中用于转码紧跟其后的字符. 用于指定 `{ } [ ] / \ + * . $ ^ | ?` 这些特殊字符. 如果想要匹配这些特殊字符则要在其前面加上反斜线 `\`. -例如 `.` 是用来匹配除换行符外的所有字符的. 如果想要匹配句子中的 `.` 则要写成 `\.`. 以下这个例子 `\.?`是选择性匹配`.`. +例如 `.` 是用来匹配除换行符外的所有字符的. 如果想要匹配句子中的 `.` 则要写成 `\.` 以下这个例子 `\.?`是选择性匹配`.`
 "(f|c|m)at\.?" => The fat cat sat on the mat.