Golang : Concatenate (combine) buffer data example
At previous tutorial on how to concatenate ( combine ) strings data, a reader asked how to concatenate data inside a buffer.
In Golang, the +=
symbol equals to x = x + somethingnew
and we will use the +=
to combine the buffer data(which is converted to string type with the built in String()
and strconv.Itoa()
functions.
Here you go :
package main
import (
"bytes"
"fmt"
"strconv"
)
func main() {
var buffer bytes.Buffer
for i := 0; i < 2; i++ {
buffer.WriteString("a")
}
s := buffer.String()
// s is now aa
for i := 0; i < 8; i++ {
s += strconv.Itoa(i)
}
// s is now aa01234567
s += buffer.String()
// s is now aa01234567aa
fmt.Println(s)
}
Output :
aa01234567aa
Happy Coding!
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
+17.3k Golang : How to tell if a file is compressed either gzip or zip ?
+5.3k PHP : Hide PHP version information from curl
+18.8k Golang : Implement getters and setters
+11.8k How to tell if a binary(executable) file or web application is built with Golang?
+5.2k Python : Create Whois client or function example
+8k Golang : Handle Palindrome string with case sensitivity and unicode
+9.1k Golang : Get SPF and DMARC from email headers to fight spam
+8.2k Golang : HttpRouter multiplexer routing example
+5k Golang : micron to centimeter example
+5.1k Golang : Check if a word is countable or not
+9.7k Golang : How to generate Code 39 barcode?