Skip to content

Instantly share code, notes, and snippets.

@MrAIring
Last active August 29, 2015 14:06
Show Gist options
  • Save MrAIring/3d40923f9e987d6b19bf to your computer and use it in GitHub Desktop.
Save MrAIring/3d40923f9e987d6b19bf to your computer and use it in GitHub Desktop.
val name: Option[String] =
request.getParameter("name")
val upperNameOpt =
name.map(_.trim.toUpperCase).filter(_ != "")
println(upperNameOpt getOrElse "no name value")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment