String to integer with no exceptions
Revision as of 21:05, 1 February 2009 by BrianEnigma (talk | contribs) (New page: <pre> public static int string2int(String s) { int result = 0; try{ result = Integer.parseInt(s); }catch(Exception e){} return result; ...)
public static int string2int(String s) { int result = 0; try{ result = Integer.parseInt(s); }catch(Exception e){} return result; }