Skip to content
GitLab
Explore
Projects
Groups
Snippets
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
f3a484a5
Commit
f3a484a5
authored
8 months ago
by
Vladimir Barsukov
Browse files
Options
Download
Email Patches
Plain Diff
fix
parent
a5ad0643
master
v1.6.4
v1.6.3
v1.6.2
v1.6.1
v1.6.0
v1.5.4
v1.5.3
v1.5.2
v1.5.1
v1.5.0
v1.4.8
v1.4.7
v1.4.6
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
zre/zre.go
+2
-2
zre/zre.go
with
2 additions
and
2 deletions
+2
-2
zre/zre.go
+
2
-
2
View file @
f3a484a5
...
...
@@ -28,8 +28,8 @@ func Match(expr, s string) bool {
return
New
(
expr
)
.
MatchString
(
s
)
}
func
FindAll
(
expr
,
s
string
)
[]
string
{
return
New
(
expr
)
.
FindAllString
(
s
,
-
1
)
func
FindAll
(
expr
,
s
string
)
[]
[]
string
{
return
New
(
expr
)
.
FindAllString
Submatch
(
s
,
-
1
)
}
func
Find
(
expr
,
s
string
)
string
{
...
...
This diff is collapsed.
Click to expand it.
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
Menu
Explore
Projects
Groups
Snippets