Logo

Programming-Idioms

  • Go
  • Smalltalk

Idiom #153 Concatenate string with integer

Create the string t as the concatenation of the string s and the integer i.

t := s, i asString.
import "fmt"
t := fmt.Sprintf("%s%d", s, i)
import "strconv"
t := s + strconv.Itoa(i)

This is faster than fmt.Sprintf.
t : String := s & Integer'Image (i);

New implementation...
< >
programming-idioms.org