Recherche…


Utilisation de l'interpolation de chaîne

iex(1)> [x, y] = ["String1", "String2"]
iex(2)> "#{x} #{y}"
# "String1 String2"

Utiliser la liste IO

["String1", " ", "String2"] |> IO.iodata_to_binary 
# "String1 String2"

Cette volonté donnera des performances boosts sous forme de chaînes non dupliquées en mémoire.
Méthode alternative:

iex(1)> IO.puts(["String1", " ", "String2"])
# String1 String2

Utiliser Enum.join

Enum.join(["String1", "String2"], " ")  
# "String1 String2"


Modified text is an extract of the original Stack Overflow Documentation
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow