您好,登錄后才能下訂單哦!
本文小編為大家詳細(xì)介紹“go語言如何逐個取出字符串”,內(nèi)容詳細(xì),步驟清晰,細(xì)節(jié)處理妥當(dāng),希望這篇“go語言如何逐個取出字符串”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學(xué)習(xí)新知識吧。
Go語言遍歷字符串——獲取每一個字符串元素
遍歷每一個ASCII字符
遍歷 ASCII 字符使用 for 的數(shù)值循環(huán)進(jìn)行遍歷,直接取每個字符串的下標(biāo)獲取 ASCII 字符,如下面的例子所示。
package main import "fmt" func main() { theme := "hello 億速云" for i := 0; i < len(theme); i++ { fmt.Printf("ascii: %c %d\n", theme[i], theme[i]) } }
程序輸出如下:
ascii: h 104 ascii: e 101 ascii: l 108 ascii: l 108 ascii: o 111 ascii: 32 ascii: p 112 ascii: h 104 ascii: p 112 ascii: ? 228 ascii: ? 184 ascii: - 173 ascii: ? 230 ascii: ? 150 ascii: ? 135 ascii: ? 231 ascii: ? 189 ascii: ? 145
這種模式下取到的漢字“慘不忍睹”。由于沒有使用 Unicode,漢字被顯示為亂碼。
按Unicode字符遍歷字符串
同樣的內(nèi)容:
package main import "fmt" func main() { theme := "hello 億速云" for _, s := range theme { fmt.Printf("Unicode: %c %d\n", s, s) } }
程序輸出如下:
Unicode: h 104 Unicode: e 101 Unicode: l 108 Unicode: l 108 Unicode: o 111 Unicode: 32 Unicode: p 112 Unicode: h 104 Unicode: p 112 Unicode: 中 20013 Unicode: 文 25991 Unicode: 網(wǎng) 32593
讀到這里,這篇“go語言如何逐個取出字符串”文章已經(jīng)介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領(lǐng)會,如果想了解更多相關(guān)內(nèi)容的文章,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。