May 20, 2016
3:18 a.m.
If you want to do it reversed, do it like this: '1969-07-20' splitOn: '-'
On May 19, 2016, at 11:48, Andy Burnett <andy.burnett@knowinnovation.com> wrote:
I keep getting this wrong, which makes me wonder why we send split: to the separator rather than the thing to be split. Is there a benefit to doing
$- split: '1969-07-20'
rather than
'1969-07-20' split: $- (which somehow seems more natural to me).
Cheers Andy