remove-punctuation: func [str [string!] punctuation [block!]] [ result-string: copy "" result-string: copy str forall punctuation [ replace/all result-string first punctuation "" ] return result-string ]