How to covert String("6,400.0") to Double ?
- From: <moon_ils-se@xxxxxxxxxxxx>
- Date: Thu, 28 Jul 2005 16:07:47 +0800
public static double removePeriod(String format) {
double a = 23.0;
format = "23.0";
a = Double.parseDouble(format,10);
return a;
}
.
- Follow-Ups:
- Re: How to covert String("6,400.0") to Double ?
- From: Roedy Green
- Re: How to covert String("6,400.0") to Double ?
- From: Thomas Weidenfeller
- Re: How to covert String("6,400.0") to Double ?
- Prev by Date: Re: Running RMI Server on Different Port - binding issues
- Next by Date: Re: XPath on DOMTree
- Previous by thread: Staticaly binding by method name
- Next by thread: Re: How to covert String("6,400.0") to Double ?
- Index(es):