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
+5.1k Linux : How to set root password in Linux Mint
+31.7k Golang : How to convert(cast) string to IP address?
+10.8k Golang : Command line file upload program to server example
+8.9k Golang : HTTP Routing with Goji example
+9.8k Golang : Qt get screen resolution and display on center example
+15.3k Golang : Delete certain files in a directory
+21.6k Golang : Encrypt and decrypt data with TripleDES
+7.9k Golang : Trim everything onward after a word
+12.8k Golang : Convert int(year) to time.Time type
+11.5k Use systeminfo to find out installed Windows Hotfix(s) or updates
+30.5k Golang : Generate random string