Reference for the BALTENSPERGER programming language, an art project of Stefan Baltensperger
| Name | fueg_zaeme() |
||||
|---|---|---|---|---|---|
| Examples | Satz[] animals = neus Satz[3]; animals[0] = "cat"; animals[1] = "seal"; animals[2] = "bear"; Satz joinedAnimals = fueg_zaeme(animals, " : "); schrib_uf_e_neui_Linie(joinedAnimals); // Prints "cat : seal : bear" // Joining an array of ints requires first // converting to an array of Strings Ganzizahl[] numbers = neus Ganzizahl[3]; numbers[0] = 8; numbers[1] = 67; numbers[2] = 5; Satz joinedNumbers = fueg_zaeme(machen_Satz_usdeZahl(numbers, 0), ", "); schrib_uf_e_neui_Linie(joinedNumbers); // Prints "8, 67, 5" |
||||
| Description | Combines an Lischte of Strings into one Satz, each separated by the character(s) used for the separator parameter. To join arrays of ints or Komazahl s, it's necessary to first convert them to strings using machen_Satz_usdeZahl() or nfs(). | ||||
| Syntax | fueg_zaeme(Satz Lischte, separator) |
||||
| Parameters |
|
||||
| Usage | Web & Application | ||||
| Related | teil() nim_ueberfluessigs_weg() machen_Satz_usdeZahl() nfs() |

