mirror of
https://github.com/thegeeklab/drone-template-lib.git
synced 2024-11-04 20:10:41 +00:00
Adding custom helper for regex
This commit is contained in:
parent
5748d3149f
commit
97bdc8bc7c
@ -17,6 +17,7 @@ package template
|
||||
import (
|
||||
"fmt"
|
||||
"net/url"
|
||||
"regexp"
|
||||
"strings"
|
||||
"time"
|
||||
"unicode"
|
||||
@ -117,3 +118,8 @@ func uppercaseFirst(s string) string {
|
||||
|
||||
return s
|
||||
}
|
||||
|
||||
func regexReplace(pattern string, input string, replacement string) string {
|
||||
re := regexp.MustCompile(pattern)
|
||||
return re.ReplaceAllString(input, replacement)
|
||||
}
|
||||
|
@ -90,3 +90,11 @@ func TestUppercaseFirst(t *testing.T) {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func TestRegexReplace(t *testing.T) {
|
||||
expected := "hello-my-String-123"
|
||||
actual := regexReplace("(.*?)\\/(.*)", "hello/my-String-123", "$1-$2")
|
||||
if actual != "hello-my-String-123" {
|
||||
t.Errorf("error, expected %s, got %s", expected, actual)
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user