Contact: aviboots(AT)netvision.net.il
39,872 questions
51,796 answers
573 users
val str = "The Scala Programming Language" val lengthWithoutSpaces = str.filter(_ != ' ').length println(lengthWithoutSpaces) /* run: 27 */