hmm,�� I can split on the space or on
the -�� but not on both
'Complementary metal-oxide semiconductor' splitOn: '[- ]'
this does nothing
'Complementary metal-oxide semiconductor' splitOn: '- '
does work and
'Complementary metal-oxide semiconductor' splitOn: '�� '
does work
Op 24-11-2018 om 22:19 schreef Roelof Wobben:
thanks,
this one looks very promosing :������ self assert: ('foobar'
splitOn: '[aeiou]+'
Roelof
Op 24-11-2018 om 22:07 schreef Nicolai Hess:
What have you tried so far?
There is a split method in pharo, with examples :)
Hello,
For a acronym maker challenge on exercism.io I have to make
acronyms.
But I see I have to split the parts on space and when it's a
word with a
- then I have to split on that,
Any hint how I can do that ?
Roelof