This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var str = "2018/12/06 12:28 \\ - Ourdoor Run: Making a habbit.fgworkout" | |
extension String { | |
func sanitized() -> String { | |
// see for ressoning on charachrer sets https://superuser.com/a/358861 | |
let invalidCharacters = CharacterSet(charactersIn: "\\/:*?\"<>|") | |
.union(.newlines) | |
.union(.illegalCharacters) | |
.union(.controlCharacters) | |