您好,登錄后才能下訂單哦!
這篇文章主要介紹了go語言如何獲取字符串長度的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇go語言如何獲取字符串長度文章都會有所收獲,下面我們一起來看看吧。
獲取方法:1、使用bytes.Count()獲取長度,語法“bytes.Count([]byte(str), sep))”;2、使用strings.Count()獲取長度,語法“strings.Count(str, substr)”;3、使用len()獲取長度,語法“len([]rune(str))”;4、使用utf8.RuneCountInString()獲取長度。
在 Go 語言 中要想獲取 字符串 長度有四種方法:
使用 bytes.Count()
使用 strings.Count()
使用 len()
使用 utf8.RuneCountInString()
方法1:使用bytes.Count()獲取長度
bytes.Count([]byte(str), sep))
參數 | 描述 |
---|---|
str | 要獲取長度的字符串。 |
sep | 分隔符,一般傳 nil。 |
返回值:
返回字符串長度。
說明:
我們需要將字符串強轉成 byte 數組,傳入 bytes.Count 函數,第二個參數是分隔符,傳入 nil 即可。
示例:
package main
import (
"bytes"
"fmt"
)
func main() {
//使用 bytes.Count() 獲取字符串長度
strHaiCoder := "(Hello, 億速云)"
strCount := bytes.Count([]byte(strHaiCoder), nil)
fmt.Println("strCount =", strCount)
}
方法2:使用strings.Count()獲取長度
strings.Count(str, substr)
參數 | 描述 |
---|---|
str | 要獲取長度的字符串。 |
substr | 子串,傳入空即可。 |
返回值:
返回字符串長度。
說明:
我們直接將字符串傳入 strings.Count 函數,第二個參數是子串,傳入空即可。
示例:
package main
import (
"fmt"
"strings"
)
func main() {
//使用 strings.Count() 獲取字符串長度
strHaiCoder := "(Hello, 億速云)"
strCount := strings.Count(strHaiCoder, "")
fmt.Println("strCount =", strCount)
}
方法3:使用len()獲取長度
len([]rune(str))
參數 | 描述 |
---|---|
str | 要獲取長度的字符串。 |
返回值:
返回字符串長度。
說明:
我們需要將字符串強轉成 rune 數組,傳入 len 函數。
示例:
package main
import (
"fmt"
)
func main() {
//使用 len() 獲取字符串長度
strHaiCoder := "(Hello, 億速云)"
strCount := len(strHaiCoder)
strCount2 := len([]rune(strHaiCoder))
fmt.Println("strCount =", strCount, "strCount2 =", strCount2)
}
方法4:使用utf8.RuneCountInString()獲取長度
utf8.RuneCountInString(str)
參數 | 描述 |
---|---|
str | 要獲取長度的字符串。 |
返回值:
返回字符串長度。
說明:
我們可以使用 utf8.RuneCountInString() 獲取字符串長度。
示例:
package main
import (
"fmt"
"unicode/utf8"
)
func main() {
//使用 utf8.RuneCountInString() 獲取字符串長度
strHaiCoder := "(Hello, 億速云)"
strCount := utf8.RuneCountInString(strHaiCoder)
fmt.Println("strCount =", strCount)
}
關于“go語言如何獲取字符串長度”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“go語言如何獲取字符串長度”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。