in reply to Re^3: Format text problem
in thread Format text problem
join($sep, $string1, $string2, $string3)
is the same thing as
$string1 . $sep . $string2 . $sep . $string
In other words, it takes a list and/or array of strings, and combines them into one long string. The first argument is a seperator. It's inserted bewteen every string in the list. The core perl functions (including join) are documented in perlfunc.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Format text problem
by b310 (Scribe) on Apr 02, 2005 at 22:00 UTC | |
by Juerd (Abbot) on Apr 02, 2005 at 22:20 UTC |