[lp_decimal_float]

Description

Link: [lp_decimal_float]
Author: Bil Corry
Category: Math
Version: 8.x
License: Public Domain
Posted: Feb. 12, 2006
Updated: Jan. 01, 0001
More by this author...
Returns the floating part of a given decimal number.
Requires [lp_decimal_precisionset]

Parameters

-decimal decimal, required The decimal to extract the floating part from.

Sample Usage

lp_decimal_float: lp_math_pi;'<br>';
// returns: 0.1415926535897
						

Source Code

Click the "Download" button below to retrieve a copy of this tag, including the complete documentation and sample usage shown on this page. Place the downloaded ".inc" file in your LassoStartup folder, restart Lasso, and you can begin using this tag immediately.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[

define_tag:'lp_decimal_float',
	-description='Returns the floating part of a given decimal number.',
	-priority='replace',
	-required='decimal';
	local:'return' = (string: (lp_decimal_precisionset:(decimal: #decimal)))->(split:'.');
	if: #return->size == 1;
		return: decimal: 0.0;
	else;
		return: (lp_decimal_precisionset:(decimal: '0.' #return->(get:2)));
	/if;

/define_tag;

]

 

Related Tags



Comments

none

Email:


Password:



Newest

Most Popular