regexp


这个是golang中的一个包,其中包含所有操作列表,如过滤、修改、替换、验证或提取

中文名叫 正则表达式,至于为什么标题要写上面这坨,因为英文逼格比较高

正则表达式 用于使用特别的语法来搜索给定字符串中的特定字符集

语法

菜鸟教程万岁

Regex Meaning
. 匹配任何单一字符串
? 前面的字符最多能出现一次(一次或零次),runoo?b可以匹配runobrunoob
+ 前面的字符必须至少出现一次,runoo+b可以匹配runoooob,runoooooob
***** 前面的字符可以不出现,也可以出现一次或多次,runoo*b可以匹配runoob,runob,runooooob
^ 匹配输入字符串的开始位置
$ 匹配输入字符串的结尾位置
| 指明两项之间的一个选择
[abc] 匹配 […] 中的所有字符,例如 [aeiou] 匹配字符串 “google runoob taobao” 中所有的 e o u a 字母。
[a-c] [A-Z] 表示一个区间,匹配所有大写字母,[a-z] 表示所有小写字母。
[^abc] 匹配除了 […] 中字符的所有字符,例如 [^aeiou] 匹配字符串 “google runoob taobao” 中除了 e o u a 字母的所有字符。
\s 匹配所有的空白符,包括换行
\w 匹配字母数字下划线等价于**[A-Za-z0-9_]**
\d 匹配任意一个阿拉伯数字,等价于**[0-9]**

个人觉得语法异常繁琐,所以看了一遍就全忘光了

函数

这里就写几个普遍一点的

MatchString()
MustCompile()
FindString()
Split()
ReplaceAllString

MatchString()

匹配子字符串

1
2
3
4
5
6
7
8
9
func main() {
words := []string{"foo", "bar", "baz"}
for _, word := range words {
if matched, _ := regexp.MatchString("ba.", word); matched {
fmt.Println(word)
}
}
}
// output : bar baz

Compile()/MustCompile()

直接匹配字符串会影响性能,一般来说会用==Compile()==或者==MustCompile()==创建一个编译好的正则表达式,来进行模式匹配

1
2
3
4
5
6
7
8
9
10
11
12
13
func main() {
words := []string{"sseven", "odds", "aaevens", "odds", "ffeven", "eeeven"}
re := regexp.MustCompile(".even")
for _, word := range words {
if re.MatchString(word) {
println(word)
}
}
}
/* output: sseven
aaevens
ffeven
eeeven*/

FindString()

用于查找字符串,用来返回第一个匹配的结果

如果没有匹配到就会返回一个空字符串

1
2
3
4
5
6
7
8
func main() {
str := "Today is a good day"

// 这个正则表达式的主要功能是匹配以T开头的单词,并且这个单词包含由a至z的字母组合,最后以y结尾
re := regexp.MustCompile("^T([a-z]+)y")
fmt.Println(re.FindString(str))
}
// output : Today

Split()

分隔字符串

1
2
3
4
5
6
7
8
9
func main() {
// 使用 regexp 的split
var data = `1,2,3,4,5,6,7,8,9,0`
split := regexp.MustCompile(`,`).Split(data, -1)
for _, s := range split {
fmt.Println(s)
}
}
// output : 1 2 3 ....

…………..

其实还有几个函数的,但是因为我想要睡觉了,所以懒得写了,反正到时候要用了再看吧,睡觉了