DEV Community

Discussion on: Daily Challenge #95 - CamelCase Method

Collapse
 
kesprit profile image
kesprit

My solution in Swift with an extension of String :

extension String {
    var camelCase: String {
        self.capitalized.filter {
            !$0.isWhitespace
        }
    }
}