i := 123
s := string(i)
s é 'E', mas o que eu quero é "123"
Por favor, diga-me como posso obter "123".
E em Java, eu posso fazer desta maneira:
String s = "ab" + "c" // s is "abc"
como posso concat
duas strings no Go?
i := 123
s := string(i)
s é 'E', mas o que eu quero é "123"
Por favor, diga-me como posso obter "123".
E em Java, eu posso fazer desta maneira:
String s = "ab" + "c" // s is "abc"
como posso concat
duas strings no Go?
Respostas:
Use a função strconv
do pacote Itoa
.
Por exemplo:
package main
import (
"strconv"
"fmt"
)
func main() {
t := strconv.Itoa(123)
fmt.Println(t)
}
Você pode concaturar strings simplesmente usando +
-as ou usando a Join
função do strings
pacote.
fmt.Sprintf("%v",value);
Se você conhece o tipo específico de valor, use o formatador correspondente, por exemplo, %d
paraint
Mais informações - fmt
%d
para int - this
É interessante notar que strconv.Itoa
é uma abreviação de
func FormatInt(i int64, base int) string
com base 10
Por exemplo:
strconv.Itoa(123)
é equivalente a
strconv.FormatInt(int64(123), 10)
Você pode usar o fmt.Sprintf
Veja http://play.golang.org/p/bXb1vjYbyc, por exemplo.
Neste caso, tanto strconv
e fmt.Sprintf
fazer o mesmo trabalho, mas usando o strconv
do pacote Itoa
função é a melhor escolha, porque fmt.Sprintf
alocar mais um objeto durante a conversão.
verifique o benchmark aqui: https://gist.github.com/evalphobia/caee1602969a640a4530
veja https://play.golang.org/p/hlaz_rMa0D, por exemplo.
fmt.Sprintf
e strconv.iota
são semelhantes em termos de facilidade de utilização e os dados mostram acima jota para ser mais rápido com menor impacto GC, verifica-se que iota
devem ser usados, em geral, quando um único número inteiro necessidades de conversão.
Convertendo int64
:
n := int64(32)
str := strconv.FormatInt(n, 10)
fmt.Println(str)
// Prints "32"
ok, a maioria deles mostrou algo de bom. Vamos lhe dar o seguinte:
// 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)
}