fix a zh translation typo

This commit is contained in:
edte 2021-04-15 19:25:15 +08:00 committed by GitHub
parent d6c5519e19
commit 6f4fd0660d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -300,7 +300,7 @@
`^` 用来检查匹配的字符串是否在所匹配字符串的开头.
例如, 在 `abc` 中使用表达式 `^a` 会得到结果 `a`. 但如果使用 `^b` 将匹配不到任何结果. 为在字符串 `abc` 中并不是以 `b` 开头.
例如, 在 `abc` 中使用表达式 `^a` 会得到结果 `a`. 但如果使用 `^b` 将匹配不到任何结果. 为在字符串 `abc` 中并不是以 `b` 开头.
例如, `^(T|t)he` 匹配以 `The``the` 开头的字符串.