Skip to content

Commit

Permalink
docs: modify comment
Browse files Browse the repository at this point in the history
  • Loading branch information
winfredLIN committed Jun 21, 2024
1 parent 0cdefc4 commit c22c755
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sqle/utils/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ func FullFuzzySearchRegexp(str string) *regexp.Regexp {
/*
1. (?is)是一个正则表达式修饰符,其中:
i表示忽略大小写(case-insensitive)
s表示让.匹配任何字符,包括换行符(\n)
s表示开启单行模式,开启后.可以匹配换行符,让整个字符串作为一行
2. ^.*匹配字符串的开头,其中:
^表示起始位置,
.表示匹配任何字符(除了换行符)
Expand Down

0 comments on commit c22c755

Please sign in to comment.