Skip to content

Instantly share code, notes, and snippets.

@aliaspooryorik
Created March 17, 2015 16:16
Show Gist options
  • Save aliaspooryorik/674b29b940be93d29227 to your computer and use it in GitHub Desktop.
Save aliaspooryorik/674b29b940be93d29227 to your computer and use it in GitHub Desktop.
numberformat masks
<cfoutput>
#numberformat(4.50, "_.__")#<br>
#numberformat(4.50, "9.99")#<br>
#numberformat(4.50, "0.00")#<br>
#numberformat("4.50", "_.__")#<br>
#numberformat("4.50", "9.99")#<br>
#numberformat("4.50", "0.00")#<br>
#numberformat("4.5", "_.__")#<br>
#numberformat("4.5", "9.99")#<br>
#numberformat("4.5", "0.00")#<br>
</cfoutput>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment