Lua:byteTableToWideString
Revision as of 00:08, 25 January 2018 by TheyCallMeTim13 (talk | contribs) (moved byteTableToWideString to Lua:byteTableToWideString)
function byteTableToWideString(Table) : string
Converts a byte table to a widestring and converts that to a string.
Function Parameters
| Parameter | Type | Description |
|---|---|---|
| Table | table | The table of bytes to convert |
Examples
Code:
local bt = { 0x74, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x00, 0x00 }
local value = byteTableToWideString(bt)
print(value)
Output:
test