$WBAPRN - concatenate elements of array

Availability
$WBAPRN is available for use with all WBSP commands.

Syntax
$WBAPRN{arrayname|delimiter}
$WBAPRN[arrayname|delimiter]

Parameters
arrayname - the name of the array to search
delimiter - optional parameter - defines the delimiter for array elements. Default value is comma (,). 


Returns
All elements of the array delimited by delimiter.

Example

<!--
[FormFields]
wb_command=R
-->
<!--WB_BeginTemplate-->
<html>
<head>
<title>WBAPrn</title>
</head>
<body>
$wbsplit[Mon,Tue,Wed,Thu,Fri,Sat,Sun|days|,|f]
$wbaprn[days|<br>]
</body>
</html> 

After running this example, the resulting page in browser should look like this:

Mon
Tue
Wed
Thu
Fri
Sat
Sun