Re: How can I join an array by a substring?
MineMoreGames <[email protected]> Wed, 24 Apr 2019 14:23:03 +0300
| Newsgroups | gmane.comp.lang.pike.user |
|---|---|
| Message-ID | <CAOykygKrDrGzNx0aL7MTqginx4XbWREuEotUHG5GU9Z6Y1VUxg@mail.gmail.com> |
I've managed to achieve that using the `* operator. On Wed, 24 Apr 2019, 14:11 MineMoreGames, <[email protected]> wrote: > Let's say I've got ({"This", "is", "a", "test"}) > And I want to join it by a white space to get > "This is a test" > > How can I achieve that? >