Returns a pointer to the first occurrence of a specified character in a PWideChar.
function WStrScan(Str: PWideChar; Chr: WideChar): PWideChar;
PWideChar WStrScan(PWideChar Str, WideChar Chr);
WideStrUtils
WStrScan returns a pointer to the first occurrence of Chr in Str. If Chr does not occur in Str, WStrScan returns nil (Delphi) or NULL (C++). The null terminator is considered to be part of the string.
AnsiStrScan
StrScan