CFLib.org – Common Function Library Project

DecToOct(str)

Last updated November 06, 2001

author

Rob Brooks-Bilson

Version: 1 | Requires: CF5 | Library: MathLib

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

Return Values:
Returns a string.

Example:

<CFSET x=1000>
<CFSET y=-1000>

<CFOUTPUT>
#x# represented in octal is: #DecToOct(x)#<BR>
#y# represented in octal is: #DecToOct(y)#<BR>
</CFOUTPUT>

Parameters:

Name Description Required
str Decimal number to convert to octal.. Yes

Full UDF Source:

/**
 * Converts from decimal (base10) to octal (base8).
 * 
 * @param str      Decimal number to convert to octal.. 
 * @return Returns a string. 
 * @author Rob Brooks-Bilson (rbils@amkor.com) 
 * @version 1.0, November 6, 2001 
 */
function DecToOct(str){
  return FormatBaseN(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