Golang : concatenate(combine) strings
Once in a blue moon, a programmer will bound to process input strings and manipulate the strings into something meaningful ... just like combining DNA. In this tutorial, we will learn how to combine or concatenate(link) couple of strings together.
The code below used the fmt.Sprint() function to combine the three separated strings.
package main
import "fmt"
func main() {
chinese := "你好"
english := "Hello"
malay := "apa khabar"
concatenated := fmt.Sprint(chinese +" "+ english +" "+ malay)
fmt.Println(concatenated)
}
Output :
你好 Hello apa khabar
Is there any other ways to combine strings in Go ? I'm sure there is. Just that I've not figure it all out yet by the time of writing this tutorial. Share it in comment below if you have better ways to combine strings in Golang.
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+12.9k Golang : Convert(cast) int to int64
+28.5k Golang : Detect (OS) Operating System
+22.9k Golang : Randomly pick an item from a slice/array example
+17.5k Golang : Read data from config file and assign to variables
+13.7k Golang : convert(cast) string to float value
+9.3k Golang : Get all countries currencies code in JSON format
+10.2k Golang : Meaning of omitempty in struct's field tag
+8.4k Golang : Set or add headers for many or different handlers
+19.2k Golang : Get current URL example
+11.4k Golang : Convert(cast) float to int
+6k Linux/Unix : Commands that you need to be careful about
+15.2k Golang : ROT47 (Caesar cipher by 47 characters) example