GO语言"strings"包中"Fields"函数的用法及代码示例。
用法:
func Fields(s string) []string
字段将字符串 s 拆分为一个或多个连续空白字符的每个实例,如 unicode IsSpace 定义的那样,如果 s 仅包含空白,则返回 s 的子字符串切片或空切片。
例子:
package main
import (
"fmt"
"strings"
)
func main() {
fmt.Printf("Fields are: %q", strings.Fields(" foo bar baz "))
}
输出:
Fields are: ["foo" "bar" "baz"]
相关用法
- GO FieldsFunc用法及代码示例
- GO Fields用法及代码示例
- GO FileServer用法及代码示例
- GO FileMode用法及代码示例
- GO FixedZone用法及代码示例
- GO Fscanln用法及代码示例
- GO Float.SetString用法及代码示例
- GO Fprintln用法及代码示例
- GO FormatMediaType用法及代码示例
- GO Float64s用法及代码示例
- GO Fprintf用法及代码示例
- GO Fprint用法及代码示例
- GO Floor用法及代码示例
- GO FormatUint用法及代码示例
- GO FormatBool用法及代码示例
- GO Float64sAreSorted用法及代码示例
- GO Float.Scan用法及代码示例
- GO FormatFloat用法及代码示例
- GO FullRune用法及代码示例
- GO FullRuneInString用法及代码示例
注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 Fields。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。