Skip to content

Instantly share code, notes, and snippets.

@edwingustafson
Created August 27, 2018 17:08
Show Gist options
  • Save edwingustafson/326cc3fe522362c209153534314a3a41 to your computer and use it in GitHub Desktop.
Save edwingustafson/326cc3fe522362c209153534314a3a41 to your computer and use it in GitHub Desktop.
val middleInitial: Option[Char] = Some('Q');
val result: String = middleInitial match {
case Some(c) => s" ${c}."
case None => ""
}
println(s"John${result} Public");
// yields "John Q. Public"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment