================================================================================
Before Today
================================================================================
If I was crying
In the van, with my friend
It was for freedom
From myself and from the land
================================================================================
08/13/2010 04:47:15
Scala | 単語の削除
def deleteWord(replaceWords: String, originalWords: String) = {
val pattern = "[" + replaceWords + "]"
pattern.r.replaceAllIn(originalWords, " ").mkString
}
println(deleteWord("golf","flogwaiurhgm"))
http://d.hatena.ne.jp/mzp/20100811/deleteWord
--------------------------------------------------------------------------------
================================================================================