Difference between revisions of "Lua:byteTableToString"

From Cheat Engine
Jump to navigation Jump to search
Line 27: Line 27:
  
  
== See also ==
+
{{LuaSeeAlso}}
* [[Lua]]
 
* [[Help_File:Script engine|Script engine]]
 
  
 
=== Related Functions ===
 
=== Related Functions ===

Revision as of 21:38, 19 March 2017

function byteTableToString(Table) : string

Converts a byte table to a string.


Function Parameters

Parameter Type Description
Table table The table of bytes to convert


Examples

Code:

 local bt = { 0x74, 0x65, 0x73, 0x74, 0x00 }
 local value = byteTableToString(bt)
 print(value)

Output:

 test 


Main Pages

Core Lua documentation entry points

Lua
Script Engine

Related Functions