Concatenating with strings.Builder Quickly in Golang

2 · Lane Wagner · May 4, 2021, 12:41 p.m.
The post Concatenating with strings.Builder Quickly in Golang first appeared on Qvault. The Go standard library makes concatenating strings easy. Concatenation is just a fancy word for adding strings together to make a larger string. For example, if we concatenate "hello", " " and "world" we’d get "hello world". The built-in fmt.Sprintf function takes a format and a variadic list of interfaces as input. The formatting option ... Read more...