Some checks failed
Pipeline: Test, Lint, Build / Get version info (push) Has been cancelled
Pipeline: Test, Lint, Build / Lint Go code (push) Has been cancelled
Pipeline: Test, Lint, Build / Test Go code (push) Has been cancelled
Pipeline: Test, Lint, Build / Test JS code (push) Has been cancelled
Pipeline: Test, Lint, Build / Lint i18n files (push) Has been cancelled
Pipeline: Test, Lint, Build / Check Docker configuration (push) Has been cancelled
Pipeline: Test, Lint, Build / Build (darwin/amd64) (push) Has been cancelled
Pipeline: Test, Lint, Build / Build (darwin/arm64) (push) Has been cancelled
Pipeline: Test, Lint, Build / Build (linux/386) (push) Has been cancelled
Pipeline: Test, Lint, Build / Build (linux/amd64) (push) Has been cancelled
Pipeline: Test, Lint, Build / Build (linux/arm/v5) (push) Has been cancelled
Pipeline: Test, Lint, Build / Build (linux/arm/v6) (push) Has been cancelled
Pipeline: Test, Lint, Build / Build (linux/arm/v7) (push) Has been cancelled
Pipeline: Test, Lint, Build / Build (linux/arm64) (push) Has been cancelled
Pipeline: Test, Lint, Build / Build (windows/386) (push) Has been cancelled
Pipeline: Test, Lint, Build / Build (windows/amd64) (push) Has been cancelled
Pipeline: Test, Lint, Build / Push to GHCR (push) Has been cancelled
Pipeline: Test, Lint, Build / Push to Docker Hub (push) Has been cancelled
Pipeline: Test, Lint, Build / Cleanup digest artifacts (push) Has been cancelled
Pipeline: Test, Lint, Build / Build Windows installers (push) Has been cancelled
Pipeline: Test, Lint, Build / Package/Release (push) Has been cancelled
Pipeline: Test, Lint, Build / Upload Linux PKG (push) Has been cancelled
Close stale issues and PRs / stale (push) Has been cancelled
POEditor import / update-translations (push) Has been cancelled
65 lines
1.4 KiB
Go
65 lines
1.4 KiB
Go
package str
|
||
|
||
import (
|
||
"strings"
|
||
"unicode/utf8"
|
||
)
|
||
|
||
var utf8ToAscii = func() *strings.Replacer {
|
||
var utf8Map = map[string]string{
|
||
"'": `‘’‛′`,
|
||
`"`: `"〃ˮײ᳓″‶˶ʺ“”˝‟`,
|
||
"-": `‐–—−―`,
|
||
}
|
||
|
||
list := make([]string, 0, len(utf8Map)*2)
|
||
for ascii, utf8 := range utf8Map {
|
||
for _, r := range utf8 {
|
||
list = append(list, string(r), ascii)
|
||
}
|
||
}
|
||
return strings.NewReplacer(list...)
|
||
}()
|
||
|
||
func Clear(name string) string {
|
||
return utf8ToAscii.Replace(name)
|
||
}
|
||
|
||
func LongestCommonPrefix(list []string) string {
|
||
if len(list) == 0 {
|
||
return ""
|
||
}
|
||
|
||
for l := 0; l < len(list[0]); l++ {
|
||
c := list[0][l]
|
||
for i := 1; i < len(list); i++ {
|
||
if l >= len(list[i]) || list[i][l] != c {
|
||
return list[i][0:l]
|
||
}
|
||
}
|
||
}
|
||
return list[0]
|
||
}
|
||
|
||
// TruncateRunes truncates a string to a maximum number of runes, adding a suffix if truncated.
|
||
// The suffix is included in the rune count, so if maxRunes is 30 and suffix is "...", the actual
|
||
// string content will be truncated to fit within the maxRunes limit including the suffix.
|
||
func TruncateRunes(s string, maxRunes int, suffix string) string {
|
||
if utf8.RuneCountInString(s) <= maxRunes {
|
||
return s
|
||
}
|
||
|
||
suffixRunes := utf8.RuneCountInString(suffix)
|
||
truncateAt := maxRunes - suffixRunes
|
||
if truncateAt < 0 {
|
||
truncateAt = 0
|
||
}
|
||
|
||
runes := []rune(s)
|
||
if truncateAt >= len(runes) {
|
||
return s + suffix
|
||
}
|
||
|
||
return string(runes[:truncateAt]) + suffix
|
||
}
|