Contact: aviboots(AT)netvision.net.il
39,943 questions
51,883 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 */