Hello everybody,
I was wondering why it is only possible to use for example letters or other characters in variables when they are at first. When numbers are first the output gets stripped-down only to the numbers.
e.g
222:abc
always returns 222
abc:222
however returns abc:222
as well as abc:def
returns abc:def
Next example:
date("DDD DD MMM YYYY")
returns Fri 13 Nov 1993
(because a letter is the first character)
whereas date("DD MMM YYYY")
returns only 13
because the first character is a number.
Any ideas how to handle this?
best,
fletcher