str

Imports

Imports #

"os"
"path/filepath"
"runtime"
"strings"
"fmt"
"strings"
"unicode"
"unicode/utf8"

Functions

FoldDup function #

FoldDup reports a pair of strings from the list that are equal according to strings.EqualFold. It returns "", "" if there are no such strings.

func FoldDup(list []string) (string, string)

HasFilePathPrefix function #

HasFilePathPrefix reports whether the filesystem path s begins with the elements in prefix. HasFilePathPrefix is case-sensitive (except for volume names) even if the filesystem is not, does not apply Unicode normalization even if the filesystem does, and assumes that all path separators are canonicalized to filepath.Separator (as returned by filepath.Clean).

func HasFilePathPrefix(s string, prefix string) bool

HasPathPrefix function #

HasPathPrefix reports whether the slash-separated path s begins with the elements in prefix.

func HasPathPrefix(s string, prefix string) bool

QuoteGlob function #

QuoteGlob returns s with all Glob metacharacters quoted. We don't try to handle backslash here, as that can appear in a file path on Windows.

func QuoteGlob(s string) string

StringList function #

StringList flattens its arguments into a single []string. Each argument in args must have type string or []string.

func StringList(args ...any) []string

ToFold function #

ToFold returns a string with the property that strings.EqualFold(s, t) iff ToFold(s) == ToFold(t) This lets us test a large set of strings for fold-equivalent duplicates without making a quadratic number of calls to EqualFold. Note that strings.ToUpper and strings.ToLower do not have the desired property in some corner cases.

func ToFold(s string) string

TrimFilePathPrefix function #

TrimFilePathPrefix returns s without the leading path elements in prefix, such that joining the string to prefix produces s. If s does not start with prefix (HasFilePathPrefix with the same arguments returns false), TrimFilePathPrefix returns s. If s equals prefix, TrimFilePathPrefix returns "".

func TrimFilePathPrefix(s string, prefix string) string

Uniq function #

Uniq removes consecutive duplicate strings from ss.

func Uniq(ss *[]string)

WithFilePathSeparator function #

WithFilePathSeparator returns s with a trailing path separator, or the empty string if s is empty.

func WithFilePathSeparator(s string) string

Generated with Arrow