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
+14.1k Golang : concatenate(combine) strings
+8.5k Golang : Count leading or ending zeros(any item of interest) example
+11.5k Golang : Post data with url.Values{}
+11.6k Golang : Fix fmt.Scanf() on Windows will scan input twice problem
+16.5k CodeIgniter/PHP : Create directory if does not exist example
+20.4k Golang : Count number of digits from given integer value
+7.7k Gogland : Single File versus Go Application Run Configurations
+10.3k Golang : Compare files modify date example
+30k Golang : How to get HTTP request header information?
+6k AWS S3 : Prevent Hotlinking policy
+5k Javascript : How to get width and height of a div?
+26.9k Golang : How to check if a connection to database is still alive ?