Wrox Home  
Search P2P Archive for: Go

  Return to Index  

asp_web_howto thread: Jscript


Message #1 by "O'Hara, Elliott M" <EMOHARA@k...> on Wed, 24 Jan 2001 14:38:39 -0500
Anyone know how to convert from hex to dec???? in Jscript.

Message #2 by "Peter Lanoie" <planoie@e...> on Wed, 24 Jan 2001 15:35:38 -0500
From the MSDN Library Jscript section



Syntax

parseInt(numstring, [radix])

The parseInt method syntax has these parts:



Part		Description

=======================

numstring	Required. A string to convert into a number.

radix		Optional. A value between 2 and 36 indicating the base of the number

contained in numstring. If not supplied, strings with a prefix of '0x' are

considered hexidecimal and strings with a prefix of '0' are considered

octal. All other strings are considered decimal.





Remarks

The parseInt method returns an integer value equal to the number contained

in numstring. If no prefix of numstring can be successfully parsed into an

integer, NaN (not a number) is returned.





Try that out.



Good luck.



-Peter




  Return to Index