Parsing String data
Is there a .Spin file that has string functions in it that may possible include a PHP equivalent to "explode"?
Example :
Example :
<?
$string = "a|b|c|d|efg";
$strarray = explode("|", $string);
echo "<pre>";
print_r($strarray);
echo "</pre>";
?>
// Output :
$string[0] = "a"
$string[1] = "b"
$string[2] = "c"
$string[3] = "d"
$string[4] = "efg"

Comments