Is there a Way to converte a Charsequence or a String to an Ingeter?

CharSequence cs = "123";
int number = (int) cs;

I'm a Noob. Solution:

CharSequence cs = "123";
int number = Integer.parseInt(cs);
link|improve this question

53% accept rate
feedback

5 Answers

up vote 3 down vote accepted

Use Integer.parseInt(). If your CharSequence is not a String, then you need to convert it first using toString().

int number = Integer.parseInt(cs.toString());
link|improve this answer
In addition to the answer of Joachim, in your case the CharSequence cs is already a String. CharSequence is an interface implemented by String (but not only), so you didn't create an object of CharSequence (Since there is no such thing), but assigned a String to cs. – Binyamin Sharet May 2 '11 at 14:33
feedback

use this

int i=Integer.parseInt(cs.toString())
link|improve this answer
feedback

Integer.parseInt(cs.toString())

link|improve this answer
feedback

From Editview component,

TextView txtYear = (TextView) findViewById(R.id.txtYear); int intYear = Integer.parseInt(txtYear.getText().toString());

link|improve this answer
feedback

Use the parsers from the Wrapper classes (Integer, Float, etc)...

public static void main(String[] args) {
    String s = "1";
    int i = Integer.parseInt(s);
    System.out.println(i);
}
link|improve this answer
wow, vote down? – Lucas de Oliveira May 2 '11 at 16:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.