Quote from: Victor Kirhenshtein on March 21, 2016, 07:48:12 PM
Hi,
dot (.) is a string concatenation operation, so line
data=cfunctions.getToken(data);
concatenates value of variable cfunctions (likely null) with returned array, which resulted in a null converted to string concatenated with array converted to string.
Best regards,
Victor
It all makes sense now. So easy when master explains it.
Thank you.