How can I remove or replace all punctuation characters from a String?

后端 未结 6 2095
情歌与酒
情歌与酒 2021-02-05 14:46

I have a string composed of words, some of which contain punctuation, which I would like to remove, but I have been unable to figure out how to do this.

For example if I

6条回答
  •  忘掉有多难
    2021-02-05 15:18

    let charactersToRemove = NSCharacterSet.punctuationCharacterSet().invertedSet
    let aWord = "".join(words.componentsSeparatedByCharactersInSet(charactersToRemove))
    

提交回复
热议问题