![]() |
Home
| Calendar
| Mail Lists
| List Archives
| Desktop SIG
| Hardware Hacking SIG
Wiki | Flickr | PicasaWeb | Video | Maps & Directions | Installfests | Keysignings Linux Cafe | Meeting Notes | Linux Links | Bling | About BLU |
Stephen Adler wrote: > Java folk... > > What's the java equivalent to the following two statments > > > char String[]="10.0"; double Number; sscanf(String,"%lf",&Number); > char OtherString[100];sprintf(OtherString,"Number is %lf",Number); String numStr = "10.0"; double number = Double.parseDouble(numStr); String otherNumStr = Double.toString(number); > > I'd like to be able to use the ease of sscanf and ssprintf to convert > and format number into and from strings... HTH, Matt -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean. _______________________________________________ Discuss mailing list [hidden email] http://lists.blu.org/mailman/listinfo/discuss