>> //strings包,字符處理..."/>
您好,登錄后才能下訂單哦!
// code_028_strings_strconv project main.go
package main
import (
"fmt"
"strconv"
)
//strings和strconv包中的函數(shù)--->>>
//strings包,字符處理:Contains,Join,Index,Repeat,Replace,Split,Trim, Fields
//strconv包,字符轉(zhuǎn)換:
//1) Append添加字符串元素:AppendInt,AppednBool,AppendQuote, AppendQuoteRune
//2) Format格式化程字符串:FormatBool(false),FormatInt(1234, 10),FormatUint(12345, 10),Itoa(1023)
//3) Parse字符串轉(zhuǎn)換為其他類(lèi)型:ParseBool("false"),ParseFloat("123.23", 64),ParseInt("1234", 10, 64),ParseUint("12345", 10, 64),Atoi("1023")
// 返回值value, err := strconv.ParseBool("false")
func checkError(e error) {
if e != nil {
fmt.Println(e)
}
}
func main() {
//Append 系列函數(shù)將整數(shù)等轉(zhuǎn)換為字符串后,添加到現(xiàn)有的字節(jié)數(shù)組中。
str := make([]byte, 0, 100)
str = strconv.AppendInt(str, 4567, 10) //以10進(jìn)制方式追加
str = strconv.AppendBool(str, false)
str = strconv.AppendQuote(str, "abcdefg")
str = strconv.AppendQuoteRune(str, '單')
fmt.Println(string(str)) //4567false"abcdefg"'單'
// Format的使用
a2 := strconv.FormatBool(false)
b2 := strconv.FormatInt(1234, 10)
c2 := strconv.FormatUint(12345, 10)
d2 := strconv.Itoa(1023)
fmt.Println(a2, b2, c2, d2) //false 1234 12345 1023
//Parse的使用
a3, err := strconv.ParseBool("false")
checkError(err)
b3, err := strconv.ParseFloat("123.23", 64)
checkError(err)
c3, err := strconv.ParseInt("1234", 10, 64)
checkError(err)
d3, err := strconv.ParseUint("12345", 10, 64)
checkError(err)
e3, err := strconv.Atoi("1023")
checkError(err)
fmt.Println(a3, b3, c3, d3, e3) //false 123.23 1234 12345 1023
}
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。