Created
February 22, 2018 17:26
-
-
Save reitzig/67b41e75176ddfd432cb09392a270218 to your computer and use it in GitHub Desktop.
Convert Swift strings to camel case
This file contains 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
fileprivate let badChars = CharacterSet.alphanumerics.inverted | |
extension String { | |
var uppercasingFirst: String { | |
return prefix(1).uppercased() + dropFirst() | |
} | |
var lowercasingFirst: String { | |
return prefix(1).lowercased() + dropFirst() | |
} | |
var camelized: String { | |
guard !isEmpty else { | |
return "" | |
} | |
let parts = self.components(separatedBy: badChars) | |
let first = String(describing: parts.first!).lowercasingFirst | |
let rest = parts.dropFirst().map({String($0).uppercasingFirst}) | |
return ([first] + rest).joined(separator: "") | |
} | |
} |
A more compact version.
extension String {
var lowercasingFirst: String { prefix(1).lowercased() + dropFirst() }
var uppercasingFirst: String { prefix(1).uppercased() + dropFirst() }
var camelCased: String {
guard !isEmpty else { return "" }
let parts = components(separatedBy: .alphanumerics.inverted)
let first = parts.first!.lowercasingFirst
let rest = parts.dropFirst().map { $0.uppercasingFirst }
return ([first] + rest).joined()
}
}
how did you come up with this? i am learning swift a while now and i am not gaining much knowledge.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Great work, thanks for sharing! I think the computation could be even faster if you move
uppercasingFirst
andlowercasingFirst
into an extension ofSubstring
. (There wouldn't even be a need to change their implementations.) Cheers.