Merge pull request #232 from edte/master

fix a zh translation typo
This commit is contained in:
Zeeshan Ahmad 2021-10-17 12:46:02 +04:00 committed by GitHub
commit be08619da4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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