Skip to content

Instantly share code, notes, and snippets.

@dcbriccetti
Created February 9, 2011 19:17
Show Gist options
  • Save dcbriccetti/819052 to your computer and use it in GitHub Desktop.
Save dcbriccetti/819052 to your computer and use it in GitHub Desktop.
val trailingPunctRe = "^(.*?)[,.\"]?$".r
def stripTrailingPunctuation(text: String) = text match {
case trailingPunctRe(result) => result
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment