In Go, string is a primitive type, it's readonly, every manipulation to it will create a new string.

So, if I want to concatenate strings many times without knowing the length of the resulting string, what's the best way to do it?

The naive way would be:

s := "";
for i := 0; i < 1000; i++ {
    s += getShortStringFromSomewhere();
}
return s;

but that does not seem very efficient.

link|improve this question

77% accept rate
feedback

4 Answers

up vote 23 down vote accepted

The best way is to use the bytes package. It has a Buffer class, which implements io.Writer.

package main

import ( 
  "bytes"; 
  "fmt";
  )

func main() {

  buffer := bytes.NewBufferString("");

  for i := 0; i < 1000; i++ {
    fmt.Fprint(buffer, "a");
  }

  println(string(buffer.Bytes()));

}

This does it in O(n) time.

link|improve this answer
1  
Is this technique Unicode-clean? – Kevin Reid Oct 27 '11 at 1:49
Yes. Almost everything in Go is Unicode-clean. – Mostafa Jan 30 at 7:39
1  
instead of println(string(buffer.Bytes())); use could just do println(buffer.String()) – FigmentEngine Feb 13 at 4:52
feedback

There is a library function in the strings package called "Join": http://golang.org/pkg/strings/#Join

A look at the code of "Join" shows a similar approach to Append function Kinopiko wrote: http://golang.org/src/pkg/strings/strings.go#L288

Usage:

import (
    "fmt";
    "strings";
)

func main() {
    s := []string{"this", "is", "a", "joined", "string\n"};
    fmt.Printf(strings.Join(s, " "));
}

$ ./test.bin
this is a joined string
link|improve this answer
feedback

You could create a big slice of bytes and copy the bytes of the short strings into it using string slices. There is a function given in "Effective Go":

func Append(slice, data[]byte) []byte {
    l := len(slice);
    if l + len(data) > cap(slice) {	// reallocate
    	// Allocate double what's needed, for future growth.
    	newSlice := make([]byte, (l+len(data))*2);
    	// Copy data (could use bytes.Copy()).
    	for i, c := range slice {
    		newSlice[i] = c
    	}
    	slice = newSlice;
    }
    slice = slice[0:l+len(data)];
    for i, c := range data {
    	slice[l+i] = c
    }
    return slice;
}

Then when the operations are finished, use string ( ) on the big slice of bytes to convert it into a string again.

link|improve this answer
feedback

I just benchmarked the top answer posted above in my own code (a recursive tree walk) and the simple concat operator is actually faster than the BufferString.

func (r *record) String() string {
    buffer := bytes.NewBufferString("");
    fmt.Fprint(buffer,"(",r.name,"[")
    for i := 0; i < len(r.subs); i++ {
        fmt.Fprint(buffer,"\t",r.subs[i])
    }
    fmt.Fprint(buffer,"]",r.size,")\n")
    return buffer.String()
}

This took 0.81s, whereas the following code:

func (r *record) String() string {
    s := "(\"" + r.name + "\" ["
    for i := 0; i < len(r.subs); i++ {
        s += r.subs[i].String()
    }
    s += "] " + strconv.FormatInt(r.size,10) + ")\n"
    return s
} 

only took 0.61s. This is probably due to the overhead of creating the new BufferStrings.

Update: I also benchmarked the join function and it ran in 0.54s

func (r *record) String() string {
    var parts []string
    parts = append(parts, "(\"", r.name, "\" [" )
    for i := 0; i < len(r.subs); i++ {
        parts = append(parts, r.subs[i].String())
    }
    parts = append(parts, strconv.FormatInt(r.size,10), ")\n")
    return strings.Join(parts,"")
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.