Created
June 20, 2014 10:05
-
-
Save narfdotpl/2a919667bc5f98a1c666 to your computer and use it in GitHub Desktop.
Swift: get substring
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
let email = "[email protected]" | |
let domain = email[find(email, "@")!.succ()..email.endIndex] // WTF | |
println(domain) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment