I have a already created file with some data in
I use the {[!]} delimiter for seperating records, and {[*]} for seperating fields inside the record.
if i use:
$f_contents = preg_split("{[!]}", implode ("", file ($fn)));
it splits the string up at every !
Is there a way round it or would it be more acceptable if I change the delimiter in the data file. I used this file perfectly okay in python.
regards,
pgudge