RAD function: strraw

A RAD function that exports array-type data to a delimiter-separated string.

Function

strraw

Format

$result = strraw($array [,$delim])

Parameters

The following parameters are valid for the strraw function.

Parameter Data type Description
$result Character Returns a Character type value.
$array Array The array from which the delimited string is created.
$delim Character The delimiter that separates the elements of the array in the result string. The default value is a space.

Note Null elements are handled as an empty string.

Example

$result=strraw({“a”,2,,true},”;”)

After execution, $result contains a;2;;true.