1
0
mirror of https://github.com/danog/gojekyll.git synced 2024-12-04 06:47:56 +01:00
gojekyll/utils/strings.go

59 lines
1.4 KiB
Go
Raw Normal View History

2017-07-09 22:17:20 +02:00
package utils
import (
2017-06-15 16:17:21 +02:00
"regexp"
)
2017-06-15 13:19:49 +02:00
// LeftPad left-pads s with spaces to n wide. It's an alternative to http://left-pad.io.
2017-06-13 23:19:05 +02:00
func LeftPad(s string, n int) string {
2017-06-11 22:00:03 +02:00
if n <= len(s) {
return s
}
ws := make([]byte, n-len(s))
for i := range ws {
ws[i] = ' '
}
return string(ws) + s
}
2017-07-03 15:37:14 +02:00
type replaceStringFuncError error
// SafeReplaceAllStringFunc is like regexp.ReplaceAllStringFunc but passes an
// an error back from the replacement function.
func SafeReplaceAllStringFunc(re *regexp.Regexp, src string, repl func(m string) (string, error)) (out string, err error) {
// The ReplaceAllStringFunc callback signals errors via panic.
// Turn them into return values.
defer func() {
if r := recover(); r != nil {
if e, ok := r.(replaceStringFuncError); ok {
err = e.(error)
} else {
panic(r)
}
}
}()
return re.ReplaceAllStringFunc(src, func(m string) string {
out, err := repl(m)
if err != nil {
panic(replaceStringFuncError(err))
}
return out
}), nil
}
var nonAlphanumericSequenceMatcher = regexp.MustCompile(`[^[:alnum:]]+`)
// Slugify replaces each sequence of non-alphanumerics by a single hyphen
func Slugify(s string) string {
return nonAlphanumericSequenceMatcher.ReplaceAllString(s, "-")
}
2017-06-17 01:17:22 +02:00
// StringArrayToMap creates a map for use as a set.
func StringArrayToMap(strings []string) map[string]bool {
stringMap := map[string]bool{}
for _, s := range strings {
stringMap[s] = true
}
return stringMap
}