[Overview][Constants][Types][Procedures and functions] |
Converts a string representation of a number to its numerical value, given a certain base.
Source position: strutils.pp line 166
function Numb2Dec( |
S: String; |
Base: Byte |
):LongInt; |
S |
|
String to convert |
Base |
|
Base to use when converting. |
Numerical value of the string.
Numb2Decconverts the number in string Sto a decimal value. It assumes the number is represented using Baseas the base. No checking is performed to see whether Scontains a valid number using base Base.
None.
|
Converts a hexadecimal string to a decimal value |
|
|
Insert thousand separators. |