Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Vladimir Barsukov
zGo
Commits
a5ad0643
Commit
a5ad0643
authored
Aug 18, 2024
by
Vladimir Barsukov
Browse files
fix
parent
1a07d321
Changes
1
Show whitespace changes
Inline
Side-by-side
zre/zre.go
View file @
a5ad0643
...
...
@@ -28,8 +28,8 @@ func Match(expr, s string) bool {
return
New
(
expr
)
.
MatchString
(
s
)
}
func
FindAll
(
expr
,
s
string
,
n
int
)
[]
string
{
return
New
(
expr
)
.
FindAllString
(
s
,
n
)
func
FindAll
(
expr
,
s
string
)
[]
string
{
return
New
(
expr
)
.
FindAllString
(
s
,
-
1
)
}
func
Find
(
expr
,
s
string
)
string
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment