I just want to know if there's a better solution to parse a number from a character in a string (assuming that we know that the character at index n is a number).

String element = "el5";
String s;
s = ""+element.charAt(2);
int x = Integer.parseInt(s);

//result: x = 5

(useless to say that it's just an example)

link|improve this question

feedback

2 Answers

up vote 6 down vote accepted

Try Character.getNumericValue(char).

String element = "el5";
int x = Character.getNumericValue(element.charAt(2));
System.out.println("x=" + x);

produces:

x=5

The nice thing about getNumericValue(char) is that it also works with strings like "el٥" and "el५" where ٥ and are the digits 5 in Eastern Arabic and Indian respectively.

link|improve this answer
feedback

That's probably the best from the performance point of view, but it's rough:

String element = "el5";
String s;
int x = element.charAt(2)-48;

It works if you assume your character is a digit, and only in languages always using Unicode, like Java...

link|improve this answer
Try that with the string "el५" where is the digit 5 in India. :) – Bart Kiers Feb 11 '11 at 11:22
I'm sure you worked hard to find this example... :-) Ok, if you have to parse non-arab digits, avoid this method. Like I said, it's rough. But it's still the fastest method in the 99.999% of cases where it works. – Traroth Feb 11 '11 at 11:26
yeah, it was a bit pedantic, I kn٥w. S٥rry :). – Bart Kiers Feb 11 '11 at 11:28
No harm done. You're actually right, and it's good to be aware that in some cases my solution doesn't work! – Traroth Feb 11 '11 at 11:29
1  
Better would be element.charAt(2) - '0', since '0' is slightly less magic than 48. – Brendan Long Jul 17 '11 at 2:54
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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