GO语言"regexp"包中"Regexp.Split"类型的用法及代码示例。
用法:
func(re *Regexp) Split(s string, n int) []string
将切片 s 拆分为由表达式分隔的子字符串,并返回这些表达式匹配之间的子字符串切片。
此方法返回的切片由 FindAllString 返回的切片中不包含的所有 s 子字符串组成,当在不包含元字符的表达式上调用时,它等效于字符串 SplitN
例子:
s := regexp.MustCompile("a*").Split("abaabaccadaaae", 5) // s: ["", "b", "b", "c", "cadaaae"]
计数确定要返回的子字符串的数量:
n > 0: at most n substrings; the last substring will be the unsplit remainder. n == 0: the result is nil (zero substrings) n < 0: all substrings
例子:
package main
import (
"fmt"
"regexp"
)
func main() {
a := regexp.MustCompile(`a`)
fmt.Println(a.Split("banana", -1))
fmt.Println(a.Split("banana", 0))
fmt.Println(a.Split("banana", 1))
fmt.Println(a.Split("banana", 2))
zp := regexp.MustCompile(`z+`)
fmt.Println(zp.Split("pizza", -1))
fmt.Println(zp.Split("pizza", 0))
fmt.Println(zp.Split("pizza", 1))
fmt.Println(zp.Split("pizza", 2))
}
输出:
[b n n ] [] [banana] [b nana] [pi a] [] [pizza] [pi a]
相关用法
- GO Regexp.SubexpIndex用法及代码示例
- GO Regexp.SubexpNames用法及代码示例
- GO Regexp.FindString用法及代码示例
- GO Regexp.FindAllIndex用法及代码示例
- GO Regexp.ReplaceAllLiteralString用法及代码示例
- GO Regexp.FindStringSubmatch用法及代码示例
- GO Regexp.FindAllString用法及代码示例
- GO Regexp.ExpandString用法及代码示例
- GO Regexp.FindAllStringSubmatch用法及代码示例
- GO Regexp.Match用法及代码示例
- GO Regexp.Longest用法及代码示例
- GO Regexp.FindStringIndex用法及代码示例
- GO Regexp.ReplaceAll用法及代码示例
- GO Regexp.Expand用法及代码示例
- GO Regexp.Find用法及代码示例
- GO Regexp.FindAllSubmatchIndex用法及代码示例
- GO Regexp.FindSubmatchIndex用法及代码示例
- GO Regexp.FindAllStringSubmatchIndex用法及代码示例
- GO Regexp.MatchString用法及代码示例
- GO Regexp.ReplaceAllString用法及代码示例
注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 Regexp.Split。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。