In Pharo:
':' split: 'one:two:three:' �� =>��OrderedCollection( 'one' 'two' 'three' '' )
(':' split: 'one:two:three:') size => 4
Last element is an empty String
In Ruby:
>> 'one:two:three:'.split(':')
=> ["one", "two", "three"]
>> 'one:two:three:'.split(':').size
=> 3
Laurent Laffont