Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm looking for a function that does what the heading says.

I ended up with writing code that parses through every character and making another string then Double.parseDouble. Which threw StringIndexoutOfBounds exception. Which is clearly not the way to go.

The block of code is here

int i = 0;
char c = q.charAt(i);
if (Character.isDigit(c)) {
    try {
        String h = "" + c;
        while (Character.isDigit(c) || c == '.') {
            if (i == (q.length() - 1)) if (Character.isDigit(q.charAt(i + 1)) || (q.charAt(i + 1) == '.')) {
                Log.i("CalcApps", "within while");
                h += q.charAt(i + 1);
            }
            i++;
            c = q.charAt(i);
        }
        result = Double.parseDouble(h);
    } catch (Exception e) {
        Log.i("MyApps", "Index is out of bounds");
    }
}
share|improve this question
What format does your String have? Maybe you just need to trim() or clean it up before the call to Double.parseDouble(). – Keppil Jul 24 '12 at 9:45

2 Answers

up vote 0 down vote accepted

You should use DecimalFormat and avoid creating your own implementation of a parser. See this question for some examples.

share|improve this answer
I'm not trying to format a decimal. I'm trying to pasrse a double value : ex: q = 123.1445+e^x(23.2) Ans: 123.1445, 23.2 – prasana venkat Jul 24 '12 at 11:03
You can do that with the Number DecimalFormat.parse(String string, ParsePosition position) method – kgiannakakis Jul 24 '12 at 11:11

You would try something like this:

public static void main(String[] args) {
        String str = "dsde1121zszs.15szs"; 
        Double d = Double.valueOf(str.replaceAll("[^0-9\\.]", ""));
        System.out.println(d);
    }
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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