(also true for Caml.int_of_string):<br><br>The following work:<br># Float.of_string "    3.12";;<br>- : Core.Std.Float.t = 3.12<br># Float.of_string "3.12";;<br>- : Core.Std.Float.t = 3.12<br>Int.of_string "3";;<br>- : Core.Std.Int.t = 3<br><br>The following does not:<br>Int.of_string " 3";;<br>Exception: (Failure "Int.of_string: \" 3\"").<br><br>I don't understand why. Bug?<br><br>I guess a scanf will work. But I think Int.of_string should work too.<br><br>Regards,<br>F.<br><br>