Append String Golang

[Solved] Append String Golang | Go - Code Explorer | yomemimo.com
Question : concatenate a string in golang

Answered by : frantic-finch-uqt7qcg01973

// Creating and initializing strings // Using shorthand declaration str3 := "Geeks" str4 := "Geeks" // Concatenating strings // Using + operator result := str3 + "for" + str4 fmt.Println("New string 2: ", result) 

Source : | Last Update : Tue, 26 May 20

Answers related to append string golang

Code Explorer Popular Question For Go