Contact: aviboots(AT)netvision.net.il
40,891 questions
53,304 answers
573 users
val s = "3892"; val i = s.toInt; print(i); /* run: 3892 */
def toInt(s: String): Int = { try { s.toInt } catch { case e: Exception => 0 } } val s = "3892"; val i = toInt(s); println(i); print(toInt("scala")); /* run: 3892 0 */