Core Function BinaryGet

From Sputnik Wiki
(Difference between revisions)
Jump to: navigation, search
(Created page with "<pre> BinaryGet( <binary-array>, <index> ) </pre> === Description === Get the byte at an index of a binary variable. === Parameters === ==== binary-array ==== The binary va...")
 
(Example)
Line 30: Line 30:
  
 
<syntaxhighlight lang="sputnik">
 
<syntaxhighlight lang="sputnik">
$binary = BinaryHex("48656c")
+
$binary = BinaryHex("48656c");
println( "Binary 0: '" . BinaryGet($binary, 0) )
+
println( "Binary 0: '" . BinaryGet($binary, 0) );
println( "Binary 1: '" . BinaryGet($binary, 1) )
+
println( "Binary 1: '" . BinaryGet($binary, 1) );
println( "Binary 2: '" . BinaryGet($binary, 2) )
+
println( "Binary 2: '" . BinaryGet($binary, 2) );
 +
// Now show all
 +
println( "All:" );
 +
for( $i = 0; $i < BinaryLen($binary); $i++)
 +
{
 +
println( "Binary $i: '" . BinaryGet($binary, $i) );
 +
}
 
</syntaxhighlight>
 
</syntaxhighlight>
  
 
[[Category:Core Function]]
 
[[Category:Core Function]]

Revision as of 17:33, 19 November 2011

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 0.

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) );
}
Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox