golang语言渐入佳境[23]-string分割类函数

栏目: Go · 发布时间: 7年前

string分割类函数

package main

import (
	"fmt"
	"strings"
	"unicode"
)

/*
1、func Fields(s string) []string
将字符串s以空白字符分割,返回一个切片

2、func FieldsFunc(s string, f func(rune) bool) []string
将字符串s以满足f(r)==true的字符分割,返回一个切片

3、func Split(s, sep string) []string
将字符串s以sep作为分隔符进行分割,分割后字符最后去掉sep

4、func SplitAfter(s, sep string) []string
将字符串s以sep作为分隔符进行分割,分割后字符最后附上sep

5、func SplitAfterN(s, sep string, n int) []string
将字符串s以sep作为分隔符进行分割,分割后字符最后附上sep,n决定返回的切片数

6、func SplitN(s, sep string, n int) []string
将字符串s以sep作为分隔符进行分割,分割后字符最后去掉sep,n决定返回的切片数
 */

func main() {
	TestSplitAfterN()
}

func TestFields() {
	fmt.Println(strings.Fields("  abc 123 ABC xyz XYZ")) //[abc 123 ABC xyz XYZ]
}

func TestFieldsFunc() {
	f := func(c rune) bool {
		//return c == '='
		return !unicode.IsLetter(c) && !unicode.IsNumber(c)
	}
	fmt.Println(strings.FieldsFunc("abc@123*ABC&xyz%XYZ" , f)) //[abc 123 ABC xyz XYZ]
}

func TestSplit() {
	fmt.Printf("%q\n", strings.Split("a,b,c", ","))//[a b c]
	fmt.Printf("%q\n", strings.Split("a man a plan a canal panama", "a "))//["" "man " "plan " "canal panama"]
	fmt.Printf("%q\n", strings.Split(" xyz ", ""))//[" " "x" "y" "z" " "]
	fmt.Printf("%q\n", strings.Split("", "Bernardo O'Higgins"))//[""]
}

func TestSplitN() {
	fmt.Printf("%q\n", strings.SplitN("a,b,c", ",", 2))//["a"   "b,c"]
	fmt.Printf("%q\n", strings.SplitN("a,b,c", ",", 1))//["a,b,c"]
}

func TestSplitAfter() {
	fmt.Printf("%q\n", strings.SplitAfter("a,b,c", ","))//["a," "b," "c"]
}

func TestSplitAfterN() {
	fmt.Printf("%q\n", strings.SplitAfterN("a,b,c", ",", 2))//["a,"   "b,c"]
}

golang语言渐入佳境[23]-string分割类函数


以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Squid: The Definitive Guide

Squid: The Definitive Guide

Duane Wessels / O'Reilly Media / 2004 / $44.95 US, $65.95 CA, £31.95 UK

Squid is the most popular Web caching software in use today, and it works on a variety of platforms including Linux, FreeBSD, and Windows. Squid improves network performance by reducing the amount of......一起来看看 《Squid: The Definitive Guide》 这本书的介绍吧!

HTML 编码/解码
HTML 编码/解码

HTML 编码/解码

XML 在线格式化
XML 在线格式化

在线 XML 格式化压缩工具

RGB HSV 转换
RGB HSV 转换

RGB HSV 互转工具