Java Integer Create toInt(String s)

Here you can find the source of toInt(String s)

Description

Converts a string to an int.

License

LGPL

Declaration

public static int toInt(String s) 

Method Source Code

//package com.java2s;

public class Main {
    /**/*from w  ww.  ja  v  a  2  s. co  m*/
     * Converts a string to an int.
     */
    public static int toInt(String s) {
        return Integer.valueOf(s.trim()).intValue();
    }
}

Related

  1. toInt(String param)
  2. toInt(String param)
  3. toInt(String pString)
  4. toInt(String s)
  5. toInt(String s)
  6. toInt(String s, int defaultInt)
  7. toInt(String s, int exception)
  8. toInt(String sInt)
  9. toInt(String str)