Skip to content

Instantly share code, notes, and snippets.

@foxicode
Created March 3, 2020 18:41
Show Gist options
  • Save foxicode/29a305238ef9e82f2930d2a9e8c4d0f3 to your computer and use it in GitHub Desktop.
Save foxicode/29a305238ef9e82f2930d2a9e8c4d0f3 to your computer and use it in GitHub Desktop.
Swift extension to convert String to Int
import Foundation
extension String {
func toInt() -> Int {
Int(self)!
}
func toIntOrNull() -> Int? {
Int(self)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment