Hello,
I have this code :
��FindAndDeleteWordsWithForbiddenParts
"deletes all the words that contain forbidden parts"
| result |
result := words
select: [ :word |
[ (forbiddenWords reject: [ :forbidden | '*' , forbidden , '*' match: word ]) isNotEmpty ]
on: NotFound
do: [ false ] ].
^ result
but I see warnings that I have to use a stream instead of string concentation.
Anyone hints how to do so ?
Roelof