当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


GO TrimLeftFunc用法及代码示例


GO语言"bytes"包中"TrimLeftFunc"函数的用法及代码示例。

用法:

func TrimLeftFunc(s []byte, f func(r rune) bool) []byte

TrimLeftFunc 将 s 视为 UTF-8 编码字节,并通过切掉所有满足 f(c) 的前导 UTF-8 编码代码点 c 来返回 s 的子切片。

例子:

package main

import (
	"bytes"
	"fmt"
	"unicode"
)

func main() {
	fmt.Println(string(bytes.TrimLeftFunc([]byte("go-gopher"), unicode.IsLetter)))
	fmt.Println(string(bytes.TrimLeftFunc([]byte("go-gopher!"), unicode.IsPunct)))
	fmt.Println(string(bytes.TrimLeftFunc([]byte("1234go-gopher!567"), unicode.IsNumber)))
}

输出:

-gopher
go-gopher!
go-gopher!567

相关用法


注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 TrimLeftFunc。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。