Skip to content

unbinary_

villares edited this page May 24, 2020 · 4 revisions

Nome

unbinary()

Exemplos

String s1 = "00010000"; 
String s2 = "00001000"; 
String s3 = "00000100"; 
println(unbinary(s1));  // Imprime 16 
println(unbinary(s2));  // Imprime 8 
println(unbinary(s3));  // Imprime 4 
 

Descrição

Converte uma representação em String de um número binario em seu equivalente valor inteiro. Por exemplo,  unbinary("00001000") retornará 8.

Sintaxe

unbinary(str)

Parâmetros str String

Retorno

int

Utilização

Web & Applicações

Relacionado

hex()

binary()

unbinary()

Clone this wiki locally