Skip to content

Instantly share code, notes, and snippets.

@narfdotpl
Created June 20, 2014 10:05
Show Gist options
  • Save narfdotpl/2a919667bc5f98a1c666 to your computer and use it in GitHub Desktop.
Save narfdotpl/2a919667bc5f98a1c666 to your computer and use it in GitHub Desktop.
Swift: get substring
let email = "hello@narf.pl"
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