内容简介:如果str中包含chars中的任意一个字符,返回true,否则返回false例子:输出:false true
常用函数
ContainsAny(str, chars) bool
如果str中包含chars中的任意一个字符,返回true,否则返回false
例子:
str := "hello world" fmt.Println(strings.ContainsAny(str,"bcfa"),strings.ContainsAny(str,"dcfa"))
输出:false true
ContainsRune(str,rune) bool
str中是否包含单个unicode字符
例子:
str := "hello world" fmt.Println(strings.ContainsRune(str,'w'),strings.ContainsRune(str,'s'))
输出:true false
Count(str,substr) int
字符串中包含某字符串的次数, 没有时返回0
例子:
str := "hello world" fmt.Println(strings.Count(str, "l"), strings.Count(str, "t"))
输出:3 0
EqualFold(str,str2)
判断两个utf-8编码字符串(将unicode大写、小写、标题三种格式字符视为相同)是否相同。
例子:
fmt.Println(strings.EqualFold("Go", "go"))
输出:true
Fields(str) []string
返回将字符串按照空白(unicode.IsSpace确定,可以是一到多个连续的空白字符)分割的多个字符串。如果字符串全部是空白或者是空字符串的话,会返回空切片。
例子:
str := "hello world hello boy" fmt.Println(strings.Fields(str))
输出:[hello world hello boy]
FieldsFunc(str func(r rune)bool{})
类似Fields,但使用函数f来确定分割符(满足f的unicode码值)。如果字符串全部是分隔符或者是空字符串的话,会返回空切片
例子:
isabc函数
func isabc(r rune) bool{ switch r{ case 'a','b','c': return true default: return false } }
FieldsFunc函数
str := "hahbhch" fmt.Println(strings.FieldsFunc(str,isabc))
输出:[h h h h]
HasPrefix(str,prex)
判断是否以某个字符串开头
例子:
str := "hello world" //以某个字符串开始 i := strings.HasPrefix(str, "h") j := strings.HasPrefix(str, "t") fmt.Println(i, j)
输出:true false
HasSuffix(str,sufx)
判断是否以某个字符串结尾
例子:
str := "hello world" //以某个字符串结尾 i1 := strings.HasSuffix(str, "h") j1 := strings.HasSuffix(str, "d") //是不是以d结尾的 fmt.Println(i1, j1)
输出:false true
Index(str,substr)
获取指定内容在字符串中首次出现的位置,中文会算成 3个字符
例子:
str := "hello world" // 获取指定内容在str中首次出现的位置,如果有则返回该元素索引, 如果没有则返回-1 fmt.Println(strings.Index(str, "l"), ",", strings.Index(str, "t"))
输出:2 , -1
IndexAny(str,chars) int
返回chars中存在的unicode字符第一次出现的位置(下标从0开始)
例子:
str := "hello world" fmt.Println(strings.IndexAny(str,"cw"))
输出:6
IndexByte(str,char) int
str中第一次char出现的位置,不存在则返回-1。 中文无法使用
例子:
str := "hello world" fmt.Println(strings.IndexByte(str,'e'))
输出:1
IndexFunc(str,func(rune)bool) int
自定义第一次查找规则
例子:
isabc函数
func isabc(r rune) bool{ switch r{ case 'a','b','c': return true default: return false } }
str := "hello world" fmt.Println(strings.IndexFunc(str,isabc))
因为 a
, b
, c
都不在 hello world
中所以返回-1
输出:-1
IndexRune(str,r) int
unicode码值在str中第一次出现的位置,不存在则返回-1。
例子:
str := "hello world" fmt.Println(strings.IndexRune(str,'d'))
输出:10
Join([]string,sep)
用指定字符串将slice中的所有元素链接成一个字符串
例子:
//用指定字符将 string 类型的 slice 中所有元素链接成一个字符串 str4 := []string{"a","b","c","d"} fmt.Println(strings.Join(str4,"-")) //用-连接str4中的所有元素
输出:a-b-c-d
LastIndex(str,substr) int
获取指定内容在字符串中最后一次出现的位置 中文会算成 3个字符
例子:
str := "hello world" // 获取指定内容在str中最后一次出现的位置, 如果有则返回该元素索引, 如果没有则返回-1 fmt.Println(strings.LastIndex(str, "l"), ",", strings.LastIndex(str, "t"))
输出:9 , -1
LastIndexAny(str,chars) int
返回chars中存在的一個字符,最后一次出现的位置
例子:
fmt.Println(strings.LastIndexAny(str, "lr"), ",", strings.LastIndexAny(str, "ot"))
输出:9,7
LastIndexByte(str,char) int
最后一次字符出现的位置 中文无法使用
例子:
str := "bibox bibox" fmt.Println(strings.LastIndexByte(str,'b'))
输出:8
LastIndexFunc(str,func(rune)bool) int
自定义最后一次查找规则
例子:
str := "bibox" fmt.Println(strings.LastIndexFunc(str,isabc))
输出:2
Map(func(rune)rune,str) string
根据自定义函数对字符串进行修改并返回
例子:
toUpper := func(r rune) rune { switch { // 对所有小写字母改为大写 case r >= 'a' && r <= 'z': return r - 32 } return r } fmt.Println(strings.Map(toUpper, "Twas brillig and the slithy gopher..."))
输出:TWAS BRILLIG AND THE SLITHY GOPHER...
Repeat(str,n) string
将字符串str整体重复n次
例子:
str := "hello world" fmt.Println(strings.Repeat(str, 2))
输出:hello worldhello world
Replace(str,oldstr,newstr,n)
替换字符串中指定内容
例子:
//将str中的 hello 替换为 你好 str := "hello world" fmt.Println(strings.Replace(str, "hello", "你好", 1)) //最后一个参数表示如果str中有多个hello的话,只替换前n个, -1代表全部替換
输出:你好 world
Split(str,seq) []string
跟去seq分隔str,返回字符串列表
例子:
str := "hello world" // 以w为分隔符,分隔hello world res0 :=strings.Split(str,"w") fmt.Println(res0)
输出:[hello orld]
SplitAfter(str,seq) []string
正常切分并保留分隔符
例子:
fmt.Printf("[%q]",strings.SplitAfter("hello,world", ","))
输出:[["hello," "world"]] 这里 ,
没有被删除,而是和前一个字符串分隔在一起
SplitN(str,sep,n) []string
切分为n个字符串, 如果n是1不切分, 前n-1个分隔符会切分字符,最后一份不管包含多少个sep都合成一个字符串 不做切分
例子:
fmt.Printf("[%q]",strings.SplitN("hello,world,world2,world3", ",",2))
输出:[["hello" "world,world2,world3"]]
ToLower(str)
小写
例子:
//转小写 str1 := "HELLO world" fmt.Println(strings.ToLower(str1)) //全体转小写
输出:hello world
ToUpper(str)
大写
例子:
//转大写 str1 := "HELLO world" fmt.Println(strings.ToUpper(str1)) //全体转大写
输出:HELLO WORLD
Trim(str,cutset)
删除两侧的指定字符,这里cutset是一个集合字符串 ";:,]"等等
例子:
fmt.Printf("[%q]", strings.Trim(" !,,!! Achtung! Achtung! !!! ", ",! "))
输出:["Achtung! Achtung"]
TrimFunc(str,func(rune)rune) string
根据自定义函数去除两侧特定字符
例子:
fmt.Printf("[%q]", strings.TrimFunc("\t\rhello\t\r", unicode.IsSpace))
输出:["hello"] 其实就是去除了 \t
和 \r
unicode.IsSpace的实现:
// IsSpace reports whether the rune is a space character as defined // by Unicode's White Space property; in the Latin-1 space // this is // '\t', '\n', '\v', '\f', '\r', ' ', U+0085 (NEL), U+00A0 (NBSP). // Other definitions of spacing characters are set by category // Z and property Pattern_White_Space. func IsSpace(r rune) bool { // This property isn't the same as Z; special-case it. if uint32(r) <= MaxLatin1 { switch r { case '\t', '\n', '\v', '\f', '\r', ' ', 0x85, 0xA0: return true } return false } return isExcludingLatin(White_Space, r) }
TrimLeft(str,cutset)
去左侧指定字符
str := "ttt hello t world" fmt.Println(strings.TrimLeft(str,"t"))
输出: hello t world <font color = red>注意:hello前面有个空格</font>
可以同时去除多种不同字符
例子:
str := "sstttst hello t world" fmt.Println(strings.TrimLeft(str,"st"))
输出:hello t world
TrimLeftFunc(str,func(rune)rune) string
根据自定义函数去除字符串右侧的所有指定字符
例子:
fmt.Printf("[%q]", strings.TrimLeftFunc("\t\rhello\t\r", unicode.IsSpace))
输出:["hello\t\r"]
TrimPrefix(str,prex)
删除字符串str的指定前缀prex,当前缀不是prex时返回原字符串str
例子:
str := "hello world" fmt.Println(strings.TrimPrefix(str,"hel"))
输出:lo world
TrimRight(str,cutset)
去除字符串右侧的所有指定字符
例子:
str := "hello t world t" fmt.Println(strings.TrimRight(str,"t"))
输出:hello t world
可以同时去除多种不同字符
例子:
str := "hello t world sstttst" fmt.Println(strings.TrimRight(str,"st"))
输出:hello t world
TrimRightFunc(str,func(rune)rune) string
根据自定义函数,去除右侧指定字符
例子:
fmt.Printf("[%q]", strings.TrimRightFunc("\t\rhello\t\r", unicode.IsSpace))
输出:["\t\rhello"]
TrimSpace(str)
去掉字符串首尾的空格
例子:
//去掉字符串首尾的空格 str := " hello world " fmt.Println(strings.TrimSpace(str))
输出:hello world 前后都没有空格
TrimSuffix(str,sufx)
去指定后缀
例子:
str := "hello world" fmt.Println(strings.TrimSuffix(str,"ld"))
输出: hello wor
不常用函数
func Compare(a, b string) int
比较返回一个按字典顺序比较两个字符串的整数。如果a == b则结果为0,如果a <b则结果为-1,如果a> b则结果为+1。 此外:仅包含与包字节对称的比较。使用内置字符串比较运算符==,<,>等通常更清晰,速度更快。
例子:
fmt.Println(strings.Compare("a","b"),strings.Compare("a","a"),strings.Compare("b","a"))
输出:-1 0 1
注意:使用大于等于小于同样可以得到同样的答案。
Title(s string) string
返回s中每个单词的首字母都改为标题格式的字符串拷贝。
BUG: Title用于划分单词的规则不能很好的处理Unicode标点符号(标点符号会前后会被认为是两个单次)
例子:
fmt.Println(strings.Title("Twas brillig and the slithy gopher..."))
输出:Twas Brillig,And The Slithy Gopher...
ToUpperSpecial(_case unicode.SpecialCase, s string) string
使用_case规定的字符映射,返回将所有字母都转为对应的大写版本的拷贝。
例子:
ToTitleSpecial(_case unicode.SpecialCase, s string) string
使用_case规定的字符映射,返回将所有字母都转为对应的标题版本的拷贝。
例子:
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:- Python(一)字符串用法
- 从头开始复习js之这可能是最全的字符串用法
- PHP细节:foreach、(汉子)字符串反转、isset,empty用法区别以及0、‘’、null之间关系
- 查找一个字符串中最长不含重复字符的子字符串,计算该最长子字符串的长度
- (三)C语言之字符串与字符串函数
- 算法笔记字符串处理问题H:编排字符串(2064)
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
逆向工程核心原理
[韩] 李承远 / 武传海 / 人民邮电出版社 / 2014-4-25 / 109.00元
本书十分详尽地介绍了代码逆向分析的核心原理。作者在Ahnlab 研究所工作多年,书中不仅包括其以此经验为基础亲自编写的大量代码,还包含了逆向工程研究人员必须了解的各种技术和技巧。彻底理解并切实掌握逆向工程这门技术,就能在众多IT 相关领域进行拓展运用,这本书就是通向逆向工程大门的捷径。 想成为逆向工程研究员的读者或正在从事逆向开发工作的开发人员一定会通过本书获得很大帮助。同时,想成为安全领域......一起来看看 《逆向工程核心原理》 这本书的介绍吧!