CFLib.org – Common Function Library Project

OctToBin(str)

Last updated November 06, 2001

author

Rob Brooks-Bilson

Version: 1 | Requires: CF5 | Library: MathLib

Description:
Converts from octal (base8) to decimal (base10). Provides a wrapper around the BIF InputBaseN. Converts both positive and negative numbers.

Return Values:
Returns a number.

Example:

<CFSET x='1750'>
<CFSET y='37777776030'>
<CFOUTPUT>
#x# represented in decimal is: #OctToDec(x)#<BR>
#y# represented in decimal is: #OctToDec(y)#<BR>
</CFOUTPUT>

Parameters:

Name Description Required
str String (hexadecimal number) to convert to decimal. Yes

Full UDF Source:

/**
 * Converts from octal (base8) to decimal (base10).
 * 
 * @param str      String (hexadecimal number)  to convert to decimal. 
 * @return Returns a number. 
 * @author Rob Brooks-Bilson (rbils@amkor.com) 
 * @version 1.0, November 6, 2001 
 */
function OctToDec(str){
  return InputBaseN(str, 8);
}

Search CFLib.org


Latest Additions

Raymond Camden added
QueryDeleteRows
November 04, 2017

Leigh added
nullPad
May 11, 2016

Raymond Camden added
stripHTML
May 10, 2016

Kevin Cotton added
date2ExcelDate
May 05, 2016

Raymond Camden added
CapFirst
April 25, 2016

Created by Raymond Camden / Design by Justin Johnson