PeekS()
语法
Text$ = PeekS(*MemoryBuffer [, Length [, Format]])概要
Reads a string from the specified memory address.
参数
*MemoryBuffer The address to read from. Length (optional) The maximum number of characters to read. If this parameter is not specified or -1 is used then there is no maximum. The string is read until a terminating null-character is encountered or the maximum length is reached. Format (optional) The string format to use when reading the string. This can be one of the following values: #PB_Ascii : Reads the strings as ascii #PB_UTF8 : Reads the strings as UTF8 #PB_Unicode: Reads the strings as unicodeThe default is #PB_Unicode if the program is compiled in unicode mode and #PB_Ascii otherwise.
返回值
Returns the read string.
参阅
PokeS(), MemoryStringLength(), CompareMemoryString(), CopyMemoryString()
已支持操作系统
所有