Difference between revisions of "Lua:readString"
Jump to navigation
Jump to search
| Line 1: | Line 1: | ||
| − | '''function''' readString(''Address'', ''Maxlength'') | + | '''function''' readString(''Address'', ''Maxlength'', ''isWideString'') |
Reads the bytes the given address and interprets them as a string | Reads the bytes the given address and interprets them as a string | ||
| Line 16: | Line 16: | ||
|Integer | |Integer | ||
|The maximum number of characters to read. If the string does not have a 0-terminator this will be the length of the string returned | |The maximum number of characters to read. If the string does not have a 0-terminator this will be the length of the string returned | ||
| + | |- | ||
| + | |isWideString | ||
| + | |Boolean | ||
| + | |Determines if this string is read out as a widestring or a normal ascii string | ||
|} | |} | ||
Revision as of 21:13, 30 March 2013
function readString(Address, Maxlength, isWideString)
Reads the bytes the given address and interprets them as a string
Function Parameters
| Parameter | Type | Description |
|---|---|---|
| Address | CEAddressString or Integer | The address to read |
| Maxlength | Integer | The maximum number of characters to read. If the string does not have a 0-terminator this will be the length of the string returned |
| isWideString | Boolean | Determines if this string is read out as a widestring or a normal ascii string |