Skip to content

Instantly share code, notes, and snippets.

@FWEugene
Created December 3, 2018 16:58
Show Gist options
  • Save FWEugene/19462207943d6c2fe34a67acfb5e7494 to your computer and use it in GitHub Desktop.
Save FWEugene/19462207943d6c2fe34a67acfb5e7494 to your computer and use it in GitHub Desktop.
import Foundation
extension String {
func replaceCharactersFromSet(characterSet: NSCharacterSet, replacementString: String = "") -> String {
return self.componentsSeparatedByCharactersInSet(characterSet).joinWithSeparator(replacementString)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment