go version go1.18.5
func Clone(s string ) string
tip : 如果 s 为空字符串,不会额外分配空间
func Clone(s string) string {
if len(s) == 0 {
return ""
}
b := make([]byte, len(s))
copy(b, s)
return unsafe.String(&b[0], len(b))
}
func Compare(a, b string) int
基本不用,直接用 > < = 比较字符串也是一样的
func Index (s, substr string) int
substr 在 s 中首次出现的位置,没有找到返回 -1 。
比较有意思的,是在代码实现中的一个写法。 判断是否是相同字符串时候,先用 前两个byte 来判断,成功以后再判断完整的字符串。估计是实践中得到的,不同字符串,前两byte 相同的概率比较低,用以提升性能
// Index returns the index of the first instance of substr in s, or -1 if substr is not present in s.
func Index(s, substr string) int {
n := len(substr)
switch {
case n == 0:
return 0
case n == 1:
return IndexByte(s, substr[0])
case n == len(s):
if substr == s {
return 0
}
return -1
case n > len(s):
return -1
case n <= bytealg.MaxLen:
// Use brute force when s and substr both are small
if len(s) <= bytealg.MaxBruteForce {
return bytealg.IndexString(s, substr)
}
c0 := substr[0]
c1 := substr[1]
i := 0
t := len(s) - n + 1
fails := 0
for i < t {
if s[i] != c0 {
// IndexByte is faster than bytealg.IndexString, so use it as long as
// we're not getting lots of false positives.
o := IndexByte(s[i+1:t], c0)
if o < 0 {
return -1
}
i += o + 1
}
if s[i+1] == c1 && s[i:i+n] == substr {
return i
}
fails++
i++
// Switch to bytealg.IndexString when IndexByte produces too many false positives.
if fails > bytealg.Cutover(i) {
r := bytealg.IndexString(s[i:], substr)
if r >= 0 {
return r + i
}
return -1
}
}
return -1
}
c0 := substr[0]
c1 := substr[1]
i := 0
t := len(s) - n + 1
fails := 0
for i < t {
if s[i] != c0 {
o := IndexByte(s[i+1:t], c0)
if o < 0 {
return -1
}
i += o + 1
}
if s[i+1] == c1 && s[i:i+n] == substr {
return i
}
i++
fails++
if fails >= 4+i>>4 && i < t {
// See comment in ../bytes/bytes.go.
j := bytealg.IndexRabinKarp(s[i:], substr)
if j < 0 {
return -1
}
return i + j
}
}
return -1
}
func Contains(s,substr string) bool
判断substr 是否在 s 中出现,有true,反之 false。基于index 来实现
func Count (s,substr string ) int
substr 在 s 中出现的次数
tip: 当substr 为空串的时候,返回的是 s 的 unicode 编码位数 + 1
func Cut (s, sep string) (before, after string, found bool)
在 s 中 首次找到 sep 的位置, 并且以首次找到的位置进行切割
基于index 实现
func Cut(s, sep string) (before, after string, found bool) {
if i := Index(s, sep); i >= 0 {
return s[:i], s[i+len(sep):], true
}
return s, "", false
}
func EqualFold(s, t string) bool
不区分大小写的 s, t 字符串比较
参考: AscII 表
tips: 1. 对应大小写字母间的差值是固定的,(‘a’ - ‘A’ = 32),
2.大于 128 的,都是扩展字符
3. A - z 之间 运算小于等于 128
func EqualFold(s, t string) bool {
// ASCII fast path
i := 0
for ; i < len(s) && i < len(t); i++ {
sr := s[i]
tr := t[i]
if sr|tr >= utf8.RuneSelf {
goto hasUnicode
}
// Easy case.
if tr == sr {
continue
}
// Make sr < tr to simplify what follows.
if tr < sr {
tr, sr = sr, tr
}
// ASCII only, sr/tr must be upper/lower case
if 'A' <= sr && sr <= 'Z' && tr == sr+'a'-'A' {
continue
}
return false
}
// Check if we've exhausted both strings.
return len(s) == len(t)
hasUnicode:
s = s[i:]
t = t[i:]
for _, sr := range s {
// If t is exhausted the strings are not equal.
if len(t) == 0 {
return false
}
// Extract first rune from second string.
var tr rune
if t[0] < utf8.RuneSelf {
tr, t = rune(t[0]), t[1:]
} else {
r, size := utf8.DecodeRuneInString(t)
tr, t = r, t[size:]
}
// If they match, keep going; if not, return false.
// Easy case.
if tr == sr {
continue
}
// Make sr < tr to simplify what follows.
if tr < sr {
tr, sr = sr, tr
}
// Fast check for ASCII.
if tr < utf8.RuneSelf {
// ASCII only, sr/tr must be upper/lower case
if 'A' <= sr && sr <= 'Z' && tr == sr+'a'-'A' {
continue
}
return false
}
// General case. SimpleFold(x) returns the next equivalent rune > x
// or wraps around to smaller values.
r := unicode.SimpleFold(sr)
for r != sr && r < tr {
r = unicode.SimpleFold(r)
}
if r == tr {
continue
}
return false
}
// First string is empty, so check if the second one is also empty.
return len(t) == 0
}
func Fields(s string) [] string
将s 用 空格( " ", \t \n,\v,\f,\r )进行切割
tips: 比较有意思的写法:
- 通过 |= 来计算当前的字符是不是 超过 128 来判断s[i] 是否是扩展ASCII 码 , | 运算有1为 1
- 通过 & ^ 来计算 空格数量
var asciiSpace = [256]uint8{'\t': 1, '\n': 1, '\v': 1, '\f': 1, '\r': 1, ' ': 1}
func Fields(s string) []string {
// First count the fields.
// This is an exact count if s is ASCII, otherwise it is an approximation.
n := 0
wasSpace := 1
// setBits is used to track which bits are set in the bytes of s.
setBits := uint8(0)
for i := 0; i < len(s); i++ {
r := s[i]
setBits |= r // setBits 用来判断是否 包含 扩展字符
isSpace := int(asciiSpace[r])
n += wasSpace & ^isSpace // 计算 空格的个数
wasSpace = isSpace
}
if setBits >= utf8.RuneSelf {
// Some runes in the input string are not ASCII.
return FieldsFunc(s, unicode.IsSpace)
}
// ASCII fast path
a := make([]string, n)
na := 0
fieldStart := 0
i := 0
// Skip spaces in the front of the input.
for i < len(s) && asciiSpace[s[i]] != 0 {
i++
}
fieldStart = i
for i < len(s) {
if asciiSpace[s[i]] == 0 {
i++
continue
}
a[na] = s[fieldStart:i]
na++
i++
// Skip spaces in between fields.
for i < len(s) && asciiSpace[s[i]] != 0 {
i++
}
fieldStart = i
}
if fieldStart < len(s) { // Last field might end at EOF.
a[na] = s[fieldStart:]
}
return a
}
func HasPrefix(s,prefix string ) bool
s 中是否有 prefix 前缀
func HasPrefix(s, prefix string) bool {
return len(s) >= len(prefix) && s[0:len(prefix)] == prefix
}
func HasSuffix(s, suffix string) bool
s 中是否有 suffix 后缀
func HasSuffix(s, suffix string) bool {
return len(s) >= len(suffix) && s[len(s)-len(suffix):] == suffix
}
func Join(elems []string, sep string) string
将 elems 各元素 通过sep 连接
tip: 提前计算要分配的内存空间大小
func Join(elems []string, sep string) string {
switch len(elems) {
case 0:
return ""
case 1:
return elems[0]
}
n := len(sep) * (len(elems) - 1) // 计算 需要追加的 sep 长度
for i := 0; i < len(elems); i++ {
n += len(elems[i]) // 计算追加上 每个元素的长度
}
var b Builder
b.Grow(n) // n 就是扩展了 cap 大小, 内部 make 的时候 cap = * cap(b.buf) + n,
b.WriteString(elems[0])
for _, s := range elems[1:] {
b.WriteString(sep)
b.WriteString(s)
}
return b.String()
}
func LastIndex(s, substr string) int
从左往右,根据substr 在s 字符串中找到最后一个出现的位置
tip: 比较有意思的是,如果是我来写的话,会从尾到头开始遍历。并且步长为len(substr) ,循环结束条件就是 步长不超过数组边界。 这边的实现是通过 hashStrBytes 计算一个hash 值。如果hash 值来判断当前位置,是否需要进行 字符串比较
// LastIndex returns the index of the last instance of substr in s, or -1 if substr is not present in s.
func LastIndex(s, substr string) int {
n := len(substr)
switch {
case n == 0:
return len(s)
case n == 1:
return LastIndexByte(s, substr[0])
case n == len(s):
if substr == s {
return 0
}
return -1
case n > len(s):
return -1
}
// Rabin-Karp search from the end of the string
hashss, pow := bytealg.HashStrRev(substr)
last := len(s) - n
var h uint32
for i := len(s) - 1; i >= last; i-- {
h = h*bytealg.PrimeRK + uint32(s[i])
}
if h == hashss && s[last:] == substr {
return last
}
for i := last - 1; i >= 0; i-- {
h *= bytealg.PrimeRK
h += uint32(s[i])
h -= pow * uint32(s[i+n])
if h == hashss && s[i:i+n] == substr {
return i
}
}
return -1
}
func Repeat(s string, count int) string
将s 重复 count 次
tips: 注意点:count < 0 或者 len(s)*count / count != len(s) 【防止溢出】
func Replace(s,old,new string ,n int ) string
从左到右替换 s 中 old 字符串,替换 n 次。如果 n < 0 就是替换所有