Last Updated | | Ratings | | Unique User Downloads | | Download Rankings |
2018-03-20 (2 years ago) | | Not enough user ratings | | Total: 66 | | All time: 9,657 This week: 335 |
|
Description | | Author |
This package is specific mainly for applications used in Spain .
This class can convert a number to Spanish text.
It can take a number and returns a text string that spells the number with words in Spanish.
The class can spell a number of less than 1,000,000,000,000 . | |
|
Details
Num2Txt
Two simple classes for convert a number to spanish text.
Examples:
C
string txt1 = Alp3476.A2Num2Txt.ToString("3528.25");
Console.WriteLine(txt1);
// tres mil quinientos veintiocho con veinticinco
string txt2 = Alp3476.A2Num2Txt.ToString(123456);
Console.WriteLine(txt2);
// ciento veintitres mil cuatrocientos cincuenta y seis
string txt3 = Alp3476.A2Num2Txt.ToString(-258241.2);
Console.WriteLine(txt3);
// menos doscientos cincuenta y ocho mil doscientos cuarenta y uno con veinte
PHP
include 'Num2Txt.php';
$o = new \Alp3476\Num2Txt();
echo $o->toString(3527.25) . PHP_EOL;
// tres mil quinientos veintisiete con veinticinco
echo $o->toString(12342245281.890) . PHP_EOL;
// doce mil trescientos cuarenta y dos millones doscientos cuarenta y cinco mil doscientos ochenta y uno con ochenta y nueve
echo $o->toString(0.253) . PHP_EOL;
// cero con veinticinco
Note:
Trim decimals to 2 digits
|
Applications that use this package |
|
No pages of applications that use this class were specified.
If you know an application of this package, send a message to the author to add a link here.
|
Num2Txt Conversión de números a texto |