Golang : How to join strings?
Apart from using fmt.Sprint()
function to combine strings together. There is another way to concatenate string from different strings. One of them is to use strings.Join()
function.
For example :
package main
import (
"fmt"
"strings"
)
func main() {
str := []string{"join", "this", "string", "with another", "string\n"}
fmt.Printf(strings.Join(str, " "))
strUTF := []string{"join", "is", "UTF8 safe", "我", "join", "你\n"}
fmt.Printf(strings.Join(strUTF, " "))
}
Output :
join this string with another string
join is UTF8 safe 我 join 你
See also : Golang : concatenate(combine) strings
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
+4k Python : Print unicode escape characters and string
+7.4k Golang : Generate Codabar
+3.9k Golang : Issue HTTP commands to server and port example
+8.6k Golang : Generate random elements without repetition or duplicate
+5.5k Golang : Lock executable to a specific machine with unique hash of the machine
+13.4k Golang : How do I get the local IP (non-loopback) address ?
+6.4k Golang : Oanda bot with Telegram and RSI example
+20.3k Golang : Randomly pick an item from a slice/array example
+11.2k CodeIgniter : "Fatal error: Cannot use object of type stdClass as array" message
+17.5k Mac OSX : Homebrew and Golang
+8.9k Golang : Find age or leap age from date of birth example
+11.1k Golang : Calculate elapsed years or months since a date