Core Function BinaryGet
From Sputnik Wiki
(Difference between revisions)
m (1 revision) |
|||
(3 intermediate revisions by one user not shown) | |||
Line 21: | Line 21: | ||
Success: Returns the byte at the given location. | Success: Returns the byte at the given location. | ||
− | Failure: Returns | + | Failure: Returns NULL. |
=== Remarks === | === Remarks === | ||
Line 39: | Line 39: | ||
{ | { | ||
println( "Binary $i: '" . BinaryGet($binary, $i) ); | println( "Binary $i: '" . BinaryGet($binary, $i) ); | ||
+ | } | ||
+ | </syntaxhighlight> | ||
+ | |||
+ | You can also do this an easier way using the [ ] array bracket | ||
+ | |||
+ | <syntaxhighlight lang="sputnik"> | ||
+ | $binary = BinaryHex("48656c"); | ||
+ | println( "Binary 0: '" . $binary[0] ); | ||
+ | println( "Binary 1: '" . $binary[1] ); | ||
+ | println( "Binary 2: '" . $binary[2] ); | ||
+ | // Now show all | ||
+ | println( "All:" ); | ||
+ | for( $i = 0; $i < BinaryLen($binary); $i++) | ||
+ | { | ||
+ | println( "Binary $i: '" . $binary[$i] ); | ||
} | } | ||
</syntaxhighlight> | </syntaxhighlight> | ||
[[Category:Core Function]] | [[Category:Core Function]] |
Latest revision as of 12:38, 14 June 2015
BinaryGet( <binary-array>, <index> )
Contents |
Description
Get the byte at an index of a binary variable.
Parameters
binary-array
The binary variable to use.
index
Any valid numeric expression.
Return Value
Success: Returns the byte at the given location.
Failure: Returns NULL.
Remarks
None.
Example
$binary = BinaryHex("48656c"); println( "Binary 0: '" . BinaryGet($binary, 0) ); println( "Binary 1: '" . BinaryGet($binary, 1) ); println( "Binary 2: '" . BinaryGet($binary, 2) ); // Now show all println( "All:" ); for( $i = 0; $i < BinaryLen($binary); $i++) { println( "Binary $i: '" . BinaryGet($binary, $i) ); }
You can also do this an easier way using the [ ] array bracket
$binary = BinaryHex("48656c"); println( "Binary 0: '" . $binary[0] ); println( "Binary 1: '" . $binary[1] ); println( "Binary 2: '" . $binary[2] ); // Now show all println( "All:" ); for( $i = 0; $i < BinaryLen($binary); $i++) { println( "Binary $i: '" . $binary[$i] ); }