Calculates the size of wide string
#include <WinAPI.au3>
_WinAPI_StringLenW($vString)
$vString | String buffer to process |
Success: | String length in characters |
Failure: | 0 |
在MSDN中搜索
#include <WinAPI.au3>
; Make the string buffer. It's "wchar" type structure. Choosing the size of 64 characters.
Local $tStringBuffer = DllStructCreate("wchar Data[64]")
; Fill it with some data
DllStructSetData($tStringBuffer, "Data", "Gongoozle")
MsgBox(262144, "_WinAPI_StringLenW", "Length of a string inside the buffer is " & _WinAPI_StringLenW($tStringBuffer) & " characters.")