Garry's Mod Wiki

math.BinToInt

  number math.BinToInt( string string )

Description

Converts a binary string into a number.

Arguments

1 string string
Binary string to convert

Returns

1 number
Base 10 number.

Example

Will print the string "101010101" as a number in console.

print( math.BinToInt( "101010101" ) )
Output: 341