Relez
unread,Mar 14, 2012, 7:16:29 PM3/14/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to FalconPL
Another strange thing...
str = "abcdef"
> str.back(1, true, true)
> str
str = "abcdef"
> str.back(1, false , true)
> str
output:
102
abcde
102
abcdef
I know that only if the second parameter is true we can get the
numeric value... why i got the second "102"? and i don't understand
why
str.back(1, true, true)
removes the first char (it's ok) while
str.back(1, false, true)
doesn't remove it (if the doc is right removing the first char is
managed by the 3rd parameter...)