Skip to content

Instantly share code, notes, and snippets.

@markohlebar
Created January 26, 2017 10:50
Show Gist options
  • Save markohlebar/92e8ec023eb947431bfd5b49555010ea to your computer and use it in GitHub Desktop.
Save markohlebar/92e8ec023eb947431bfd5b49555010ea to your computer and use it in GitHub Desktop.
import Foundation
extension String {
func snakecased() -> String {
return self.replacingOccurrences(of: "(?<=[^A-Z])([A-Z])", with: "_$0", options: .regularExpression).lowercased()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment