Go string ဆိုတာ read-only byte slice တစ်ခုဖြစ်ပါတယ်။ Go language နဲ့
standard library က string တွေကို encoded UTF-8 (containers of text) အဖြစ်ဖြစ်
special အနေဖြင့်အသုံးပြုပါတယ်။
တခြား language တွေမှာ string တွေက “character” တွေနဲ့ ဖွဲ့စည်းထားပါတယ်။
Go မှာတော့ character ဆိုတဲ့ သဘောတရားကို |
|
package main |
|
import ( "fmt" "unicode/utf8" ) |
|
func main() { |
|
|
const s = "สวัสดี" |
String တွေဟာ |
fmt.Println("Len:", len(s)) |
String ထဲကို indexing လုပ်ခြင်းဟာ တစ်ခုချင်းစီရဲ့ index မှာရှိတဲ့ raw byte တန်ဖိုးတွေကို ထုတ်ပေးပါတယ်။
ဒီ loop က |
for i := 0; i < len(s); i++ { fmt.Printf("%x ", s[i]) } fmt.Println() |
String တစ်ခုထဲမှာ rune ဘယ်နှစ်ခုပါလဲဆိုတာ ရေတွက်ဖို့ |
fmt.Println("Rune count:", utf8.RuneCountInString(s)) |
|
for idx, runeValue := range s { fmt.Printf("%#U starts at %d\n", runeValue, idx) } |
|
fmt.Println("\nUsing DecodeRuneInString") for i, w := 0, 0; i < len(s); i += w { runeValue, width := utf8.DecodeRuneInString(s[i:]) fmt.Printf("%#U starts at %d\n", runeValue, i) w = width |
ဒါက |
examineRune(runeValue) } } |
Single quote နဲ့ ဝိုင်းထားတဲ့ value တွေက rune literals ဖြစ်ပါတယ်။
|
func examineRune(r rune) { |
if r == 't' { fmt.Println("found tee") } else if r == 'ส' { fmt.Println("found so sua") } } |
$ go run strings-and-runes.go Len: 18 e0 b8 aa e0 b8 a7 e0 b8 b1 e0 b8 aa e0 b8 94 e0 b8 b5 Rune count: 6 U+0E2A 'ส' starts at 0 U+0E27 'ว' starts at 3 U+0E31 'ั' starts at 6 U+0E2A 'ส' starts at 9 U+0E14 'ด' starts at 12 U+0E35 'ี' starts at 15 |
|
Using DecodeRuneInString U+0E2A 'ส' starts at 0 found so sua U+0E27 'ว' starts at 3 U+0E31 'ั' starts at 6 U+0E2A 'ส' starts at 9 found so sua U+0E14 'ด' starts at 12 U+0E35 'ี' starts at 15 |
နောက်ဥပမာ: Structs.