Skip to content

Instantly share code, notes, and snippets.

@shigemk2
Created January 4, 2015 13:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shigemk2/47407d34df926b547fae to your computer and use it in GitHub Desktop.
Save shigemk2/47407d34df926b547fae to your computer and use it in GitHub Desktop.
val a = "hello world".split(" ")
println(a)
println(a(0))
a.foreach(println)
val s = "eggs, milk, butter, Coco Puffs"
// 空白が入る
s.split(",").foreach(println)
// 空白を取り除く
s.split(",").map(_.trim).foreach(println)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment