golang strings 常用函数

官网
https://pkg.go.dev/strings

这里介绍最常用的函数
1、Fields 以空格为字段分割符,返回[]string

func strings.Split(s string, sep string) []string

2、Contains 是否包含子串,返回bool

 func strings.Contains(s string, substr string) bool
//也可以加!号,表示不包含
!strings.Contains(s string, substr string)

3、Split ,以子串分割,返回[]string

func strings.Split(s string, sep string) []string

4、ReplaceAll 替换

func strings.ReplaceAll(s, old, new string) string

5、其他

func Clone(s string) string
func Compare(a, b string) int
func Contains(s, substr string) bool
func ContainsAny(s, chars string) bool
func ContainsFunc(s string, f func(rune) bool) bool
func ContainsRune(s string, r rune) bool
func Count(s, substr string) int
func Cut(s, sep string) (before, after string, found bool)
func CutPrefix(s, prefix string) (after string, found bool)
func CutSuffix(s, suffix string) (before string, found bool)
func EqualFold(s, t string) bool
func Fields(s string) []string
func FieldsFunc(s string, f func(rune) bool) []string
func HasPrefix(s, prefix string) bool
func HasSuffix(s, suffix string) bool
func Index(s, substr string) int
func IndexAny(s, chars string) int
func IndexByte(s string, c byte) int
func IndexFunc(s string, f func(rune) bool) int
func IndexRune(s string, r rune) int
func Join(elems []string, sep string) string
func LastIndex(s, substr string) int
func LastIndexAny(s, chars string) int
func LastIndexByte(s string, c byte) int
func LastIndexFunc(s string, f func(rune) bool) int
func Map(mapping func(rune) rune, s string) string
func Repeat(s string, count int) string
func Replace(s, old, new string, n int) string
func ReplaceAll(s, old, new string) string
func Split(s, sep string) []string
func SplitAfter(s, sep string) []string
func SplitAfterN(s, sep string, n int) []string
func SplitN(s, sep string, n int) []string
func Title(s string) stringDEPRECATED
func ToLower(s string) string
func ToLowerSpecial(c unicode.SpecialCase, s string) string
func ToTitle(s string) string
func ToTitleSpecial(c unicode.SpecialCase, s string) string
func ToUpper(s string) string
func ToUpperSpecial(c unicode.SpecialCase, s string) string
func ToValidUTF8(s, replacement string) string
func Trim(s, cutset string) string
func TrimFunc(s string, f func(rune) bool) string
func TrimLeft(s, cutset string) string
func TrimLeftFunc(s string, f func(rune) bool) string
func TrimPrefix(s, prefix string) string
func TrimRight(s, cutset string) string
func TrimRightFunc(s string, f func(rune) bool) string
func TrimSpace(s string) string
func TrimSuffix(s, suffix string) string
type Builder
	func (b *Builder) Cap() int
	func (b *Builder) Grow(n int)
	func (b *Builder) Len() int
	func (b *Builder) Reset()
	func (b *Builder) String() string
	func (b *Builder) Write(p []byte) (int, error)
	func (b *Builder) WriteByte(c byte) error
	func (b *Builder) WriteRune(r rune) (int, error)
	func (b *Builder) WriteString(s string) (int, error)
type Reader
	func NewReader(s string) *Reader
	func (r *Reader) Len() int
	func (r *Reader) Read(b []byte) (n int, err error)
	func (r *Reader) ReadAt(b []byte, off int64) (n int, err error)
	func (r *Reader) ReadByte() (byte, error)
	func (r *Reader) ReadRune() (ch rune, size int, err error)
	func (r *Reader) Reset(s string)
	func (r *Reader) Seek(offset int64, whence int) (int64, error)
	func (r *Reader) Size() int64
	func (r *Reader) UnreadByte() error
	func (r *Reader) UnreadRune() error
	func (r *Reader) WriteTo(w io.Writer) (n int64, err error)
type Replacer
	func NewReplacer(oldnew ...string) *Replacer
	func (r *Replacer) Replace(s string) string
	func (r *Replacer) WriteString(w io.Writer, s string) (n int, err error)

-------------end

你可能感兴趣的:(GO,golang,开发语言,后端)