Skip to content

Instantly share code, notes, and snippets.

@sohnryang
Last active January 31, 2017 22:12
Show Gist options
  • Save sohnryang/821b61ba7eb1b5d4e275873c8b68d17d to your computer and use it in GitHub Desktop.
Save sohnryang/821b61ba7eb1b5d4e275873c8b68d17d to your computer and use it in GitHub Desktop.
scala for the impatient - get first & last character
val str = "ABCD"
//First character
println(str(0))
//Last character
println(str takeRight 1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment