I have
val content = "bala.ba* muthu.t@ jiang.xin="
How to filter of those junk char(*, @ & = ) in Scala?
For now I am using java substring, which may not the best for scala.
I also tried
filter (_ != "*" ) filter (_ != "@") filter (_ != "=")
Don't feel thats the right way
I would like to go with best functional way
Thanks in advance guys...