首頁 > 後端開發 > Golang > 如何取得 Go 中字元的 Unicode 值?

如何取得 Go 中字元的 Unicode 值?

Mary-Kate Olsen
發布: 2024-11-03 16:42:03
原創
428 人瀏覽過

How do I get the Unicode value of a character in Go?

在 Go 中尋找字元的 Unicode 值

在 JavaScript 中,charCodeAt() 方法傳回字串中字元的數字 Unicode 值。要在Go 中實現相同的功能,請使用以下步驟:

  1. 將字串轉換為rune 切片: Go 使用rune 類型,它表示Unicode 程式碼點,來表示字元。若要將字串轉換為符文切片,請使用 []rune(string)。
  2. 存取指定索引處的符文:您可以使用[] 存取特定索引處的符文rune(string)[index].
  3. 列印為字元: 使用fmt.Printf("%c", []) 格式化結果以列印為字元。

以下是範例程式碼片段:

<code class="go">package main

import "fmt"

func main() {
    str := "s"

    // Convert string to a slice of runes
    runes := []rune(str)

    // Get the Unicode value of the first character
    unicodeValue := runes[0]

    // Print the Unicode value
    fmt.Println(unicodeValue)

    // Print the character
    fmt.Printf("%c", unicodeValue)
}</code>
登入後複製

此程式碼將列印 Unicode 值 (115) 和字元 's'。

附加說明:

如果不需要字元表示,可以使用 string[index] 直接存取表示符文 Unicode 值的 int32。這是因為 runes 是 Go 中 int32 的別名。

以上是如何取得 Go 中字元的 Unicode 值?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板