i := 123
s := string(i)
s to „E”, ale to, czego chcę, to „123”
Powiedz mi, jak mogę uzyskać „123”.
A w Javie mogę zrobić w ten sposób:
String s = "ab" + "c" // s is "abc"
Jak mogę concat
dwa ciągi w Go?
i := 123
s := string(i)
s to „E”, ale to, czego chcę, to „123”
Powiedz mi, jak mogę uzyskać „123”.
A w Javie mogę zrobić w ten sposób:
String s = "ab" + "c" // s is "abc"
Jak mogę concat
dwa ciągi w Go?
Odpowiedzi:
Użyj funkcji strconv
pakietu Itoa
.
Na przykład:
package main
import (
"strconv"
"fmt"
)
func main() {
t := strconv.Itoa(123)
fmt.Println(t)
}
Możesz konkatować łańcuchy, po prostu je +
pisząc, lub używając Join
funkcji strings
pakietu.
fmt.Sprintf("%v",value);
Jeśli znasz konkretny typ wartości, użyj odpowiedniego formatyzatora, na przykład %d
dlaint
Więcej informacji - fmt
%d
dla int - this
Interesujące jest to, aby pamiętać, że strconv.Itoa
jest skrótem dla
func FormatInt(i int64, base int) string
z podstawą 10
Na przykład:
strconv.Itoa(123)
jest równa
strconv.FormatInt(int64(123), 10)
Możesz użyć fmt.Sprintf
Zobacz na przykład http://play.golang.org/p/bXb1vjYbyc .
W tym przypadku oba strconv
i fmt.Sprintf
wykonują tę samą pracę, ale użycie funkcji strconv
pakietu Itoa
jest najlepszym wyborem, ponieważ fmt.Sprintf
przy konwersji przydziel jeszcze jeden obiekt.
sprawdź test tutaj: https://gist.github.com/evalphobia/caee1602969a640a4530
patrz na przykład https://play.golang.org/p/hlaz_rMa0D .
fmt.Sprintf
i strconv.iota
są podobne pod względem łatwości użycia, a powyższe dane pokazują, że jota jest szybsza przy mniejszym wpływie GC, wydaje się, że iota
należy ją stosować ogólnie, gdy jedna liczba całkowita wymaga konwersji.
Konwertowanie int64
:
n := int64(32)
str := strconv.FormatInt(n, 10)
fmt.Println(str)
// Prints "32"
ok, większość z nich pokazała ci coś dobrego. Dam ci to:
// ToString Change arg to string
func ToString(arg interface{}, timeFormat ...string) string {
if len(timeFormat) > 1 {
log.SetFlags(log.Llongfile | log.LstdFlags)
log.Println(errors.New(fmt.Sprintf("timeFormat's length should be one")))
}
var tmp = reflect.Indirect(reflect.ValueOf(arg)).Interface()
switch v := tmp.(type) {
case int:
return strconv.Itoa(v)
case int8:
return strconv.FormatInt(int64(v), 10)
case int16:
return strconv.FormatInt(int64(v), 10)
case int32:
return strconv.FormatInt(int64(v), 10)
case int64:
return strconv.FormatInt(v, 10)
case string:
return v
case float32:
return strconv.FormatFloat(float64(v), 'f', -1, 32)
case float64:
return strconv.FormatFloat(v, 'f', -1, 64)
case time.Time:
if len(timeFormat) == 1 {
return v.Format(timeFormat[0])
}
return v.Format("2006-01-02 15:04:05")
case jsoncrack.Time:
if len(timeFormat) == 1 {
return v.Time().Format(timeFormat[0])
}
return v.Time().Format("2006-01-02 15:04:05")
case fmt.Stringer:
return v.String()
case reflect.Value:
return ToString(v.Interface(), timeFormat...)
default:
return ""
}
}
package main
import (
"fmt"
"strconv"
)
func main(){
//First question: how to get int string?
intValue := 123
// keeping it in separate variable :
strValue := strconv.Itoa(intValue)
fmt.Println(strValue)
//Second question: how to concat two strings?
firstStr := "ab"
secondStr := "c"
s := firstStr + secondStr
fmt.Println(s)
}