EarthWeb
Developer.com
Site
windows 2000
visual c++
java
visual basic
javascripts
recommend it
 
Book
thinking in java
 
Interact
forum
guest book
jobs
jokes
what's new

share code
 
Resource
add resource
modify resource
new resource
 

[Internet Jobs]
-----
Java by E-mail:

Get the weekly e-mail highlights on Java!
-----

-

Convert from type X to type Y


Author: Real Gagnon
Author's WebSite: http://tactika.com/realhome/realhome.html

A string to integer


   s = "12";
   i = parseInt(s, 10);  or  i = eval(s)    or  i = s - 0;



An integer to a string


   i = 12;
   s = (i).toString();   or   s = "" + i;  
   
   (hex string)  s = "0x" + (i).toString(16);
   (oct string)  s = "0"  + (i).toString(8);  
   (bin string)  s = (i).toString(2);

Posted On: 10-Jul-1999

internet.commerce



Acceptable Use Policy

internet.comMediabistrojusttechjobs.comGraphics.com

WebMediaBrands Corporate Info


Advertise | Newsletters | Feedback | Submit News

Legal Notices | Licensing | Permissions | Privacy Policy