VALLNG
- Source: https://www.freebasic.net/wiki/wikka.php?wakka=KeyPgVallng
- Last revised: 2016-03-13
Converts a string to a 64bit integer
Syntax
declare function Vallng ( byref strnum as const string ) as longint
declare function Vallng ( byref strnum as const wstring ) as longintUsage
` result = Vallng ( strnum )
`
Parameters
strnum
the string to convert
Return Value
Returns a longint of the converted string
If the first character of the string is invalid, Vallng will return 0.
Description
For example, Vallng("10") will return 10, and Vallng("10.60") will return 10 as well. The function parses the string from the left, skipping any white space, and returns the longest number it can read, stopping at the first non-suitable character it finds. Any non-numeric characters, including decimal points and exponent specifiers, are considered non-suitable, for example, Vallng("23.1E+6") will just return 23.
Vallng can be used to convert integer numbers in binary / octal / hexadecimal format, if they have the relevant identifier ("&B" / "&O" / "&H") prefixed, for example: Vallng("&HFF") returns 255.
If you want to convert a number into string format, use the Str function.
Examples
start GeSHi
Dim a As String, b As LongInt
a = "20xa211"
b = ValLng(a)
Print a, bend GeSHi
20xa211 20Dialect Differences
- Not available in the -lang qb dialect unless referenced with the alias
__Vallng.
Differences from QB
- New to FreeBASIC
See also
ClngintValValintValulngStrChrAsc
Back to DocToc