| [Overview][Resource strings][Constants][Types][Procedures and functions][Index] | 
Convert a decimal number to a string representation, using given a base.
Source position: strutils.pp line 193
| function Dec2Numb( | 
| N: LongInt; | 
| Len: Byte; | 
| Base: Byte | 
| ):string; | 
| N | 
 | Number to represent. | 
| Len | 
 | Minimal length of the returned string | 
| Base | 
 | Base to use when converting | 
The representation of the given number.
Dec2Numb converts N to its representation using base Base. N must be a positive integer. The resulting string is left-padded with zeroes till it has length Len. Base must be in the range 2-36 to be meaningful, but no checking on this is performed.
If Base is out of range, the resulting string will contain unreadable (non-alphanumeric) characters.
| 
 | Converts a hexadecimal string to a decimal value | |
| 
 | Converts an integer to a binary string representation, inserting spaces at fixed locations. | |
| 
 | Represent an integer with roman numerals | |
| 
 | Convert a string with a Roman number to it's decimal value. |