Golang 中數字的字母表示
簡介:
簡介:將數字轉換為其對應的字母表示在各種情況下都是一項有用的任務。本文探討了在 Go 程式語言中高效執行此轉換的多種方法。
數字到符文(字元):最簡單的方法是將數字加到'A' 的 ASCII 值減 1。這將為您提供與字母字元相對應的符文。例如,“A”加 1 - 1 得到“A”,加 2 得到“B”,依此類推。
<code class="go">import "fmt" func toChar(i int) rune { return rune('A' - 1 + i) } func main() { fmt.Printf("%d %q\n", 1, toChar(1)) fmt.Printf("%d %q\n", 2, toChar(2)) fmt.Printf("%d %q\n", 23, toChar(23)) }</code>
範例程式碼:
數字到字串:如果需要字串表示,只需將上一個方法傳回的符文轉換為字串。
<code class="go">import "fmt" func toCharStr(i int) string { return string('A' - 1 + i) } func main() { fmt.Printf("%d %q\n", 1, toCharStr(1)) fmt.Printf("%d %q\n", 2, toCharStr(2)) fmt.Printf("%d %q\n", 23, toCharStr(23)) }</code>
範例程式碼:
數字到字串(快取):如果需要頻繁執行轉換,快取字串會更有效率。這可以透過儲存所有字母字元的陣列來完成。
<code class="go">import "fmt" var arr = [...]string{"A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"} func toCharStrArr(i int) string { return arr[i-1] } func main() { fmt.Printf("%d %q\n", 1, toCharStrArr(1)) fmt.Printf("%d %q\n", 2, toCharStrArr(2)) fmt.Printf("%d %q\n", 23, toCharStrArr(23)) }</code>
範例程式碼:
數位到字串(切片字串常數):另一個有趣的解決方案涉及對常數字串進行切片以獲得所需的字元。
<code class="go">import "fmt" const abc = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" func toCharStrConst(i int) string { return abc[i-1 : i] } func main() { fmt.Printf("%d %q\n", 1, toCharStrConst(1)) fmt.Printf("%d %q\n", 2, toCharStrConst(2)) fmt.Printf("%d %q\n", 23, toCharStrConst(23)) }</code>範例程式碼:
以上是在 Golang 中如何將數字表示為字母?的詳細內容。更多資訊請關注PHP中文網其他相關文章!