parsePolynomial -- this method takes one parameter (a String) and returns a new Polynomial. The parameter is a String that represents a polynomial of the form similar to 2x^2+5.You must return a new instance of a Polynomial that correctly represents the string.

You will have to use some of the methods in the Java String class, so you should probably review the online documentation for the Java String class. For example, you might want to look at the replaceAll(), lastIndexOf(), charAt() and substring() methods (among others).

link|improve this question

33% accept rate
4  
Homework, possibly? – Eric Apr 2 '11 at 21:30
yes...due tomorrow at 8. – javaLearner Apr 2 '11 at 21:41
You will have to use some of the methods in the Java String class, so you should probably review the online documentation for the Java String class. Did you actually do that? Or you just want us to do it for you? :( – Richards Apr 2 '11 at 21:43
ya..i did..still confused..so. – javaLearner Apr 2 '11 at 22:09
Show the code you have problems with... – Thorbjørn Ravn Andersen Apr 2 '11 at 22:09
show 1 more comment
feedback

1 Answer

up vote 2 down vote accepted

First split at the +es so you get parts of either the form 2x^2 or 5.

Next test if they contain x^ and if yes use that to split them again so you get the coefficient and the exponent. Then parse them as double and int and you're done.

link|improve this answer
Nice way to walk the line, helpful without just outright giving the answer. <Thumbs up> – Kevin D Apr 2 '11 at 21:50
feedback

Your Answer

 
or
required, but never shown

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