這篇文章主要介紹了go語言如何獲取字符串長度的相關(guān)知識,內(nèi)容詳細(xì)易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇go語言如何獲取字符串長度文章都會有所收獲,下面我們一起來看看吧。
讓客戶滿意是我們工作的目標(biāo),不斷超越客戶的期望值來自于我們對這個行業(yè)的熱愛。我們立志把好的技術(shù)通過有效、簡單的方式提供給客戶,將通過不懈努力成為客戶在信息化領(lǐng)域值得信任、有價值的長期合作伙伴,公司提供的服務(wù)項目有:主機域名、網(wǎng)頁空間、營銷軟件、網(wǎng)站建設(shè)、長葛網(wǎng)站維護(hù)、網(wǎng)站推廣。
獲取方法:1、使用bytes.Count()獲取長度,語法“bytes.Count([]byte(str), sep))”;2、使用strings.Count()獲取長度,語法“strings.Count(str, substr)”;3、使用len()獲取長度,語法“l(fā)en([]rune(str))”;4、使用utf8.RuneCountInString()獲取長度。
在 Go 語言 中要想獲取 字符串 長度有四種方法:
使用 bytes.Count()
使用 strings.Count()
使用 len()
使用 utf8.RuneCountInString()
方法1:使用bytes.Count()獲取長度
bytes.Count([]byte(str), sep))
參數(shù) | 描述 |
---|---|
str | 要獲取長度的字符串。 |
sep | 分隔符,一般傳 nil。 |
返回值:
返回字符串長度。
說明:
我們需要將字符串強轉(zhuǎn)成 byte 數(shù)組,傳入 bytes.Count 函數(shù),第二個參數(shù)是分隔符,傳入 nil 即可。
示例:
package main
import (
"bytes"
"fmt"
)
func main() {
//使用 bytes.Count() 獲取字符串長度
strHaiCoder := "(Hello, 創(chuàng)新互聯(lián))"
strCount := bytes.Count([]byte(strHaiCoder), nil)
fmt.Println("strCount =", strCount)
}
方法2:使用strings.Count()獲取長度
strings.Count(str, substr)
參數(shù) | 描述 |
---|---|
str | 要獲取長度的字符串。 |
substr | 子串,傳入空即可。 |
返回值:
返回字符串長度。
說明:
我們直接將字符串傳入 strings.Count 函數(shù),第二個參數(shù)是子串,傳入空即可。
示例:
package main
import (
"fmt"
"strings"
)
func main() {
//使用 strings.Count() 獲取字符串長度
strHaiCoder := "(Hello, 創(chuàng)新互聯(lián))"
strCount := strings.Count(strHaiCoder, "")
fmt.Println("strCount =", strCount)
}
方法3:使用len()獲取長度
len([]rune(str))
參數(shù) | 描述 |
---|---|
str | 要獲取長度的字符串。 |
返回值:
返回字符串長度。
說明:
我們需要將字符串強轉(zhuǎn)成 rune 數(shù)組,傳入 len 函數(shù)。
示例:
package main
import (
"fmt"
)
func main() {
//使用 len() 獲取字符串長度
strHaiCoder := "(Hello, 創(chuàng)新互聯(lián))"
strCount := len(strHaiCoder)
strCount2 := len([]rune(strHaiCoder))
fmt.Println("strCount =", strCount, "strCount2 =", strCount2)
}
方法4:使用utf8.RuneCountInString()獲取長度
utf8.RuneCountInString(str)
參數(shù) | 描述 |
---|---|
str | 要獲取長度的字符串。 |
返回值:
返回字符串長度。
說明:
我們可以使用 utf8.RuneCountInString() 獲取字符串長度。
示例:
package main
import (
"fmt"
"unicode/utf8"
)
func main() {
//使用 utf8.RuneCountInString() 獲取字符串長度
strHaiCoder := "(Hello, 創(chuàng)新互聯(lián))"
strCount := utf8.RuneCountInString(strHaiCoder)
fmt.Println("strCount =", strCount)
}
關(guān)于“go語言如何獲取字符串長度”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對“go語言如何獲取字符串長度”知識都有一定的了解,大家如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。