AnsiStrPos
Return position of one null-terminated substring in another
Declaration
Source position: sysansih.inc line 19
function AnsiStrPos(str: PChar; substr: PChar) : PChar;
Description
AnsiStrPos returns a pointer to the first occurrence of SubStr in Str. If SubStr does not occur in Str then Nil is returned.
Errors
An access violation may occur if either Str or SubStr point to invalid memory.
See also
Name | Description |
---|---|
AnsiPos | Return Position of one ansistring in another. |
AnsiStrRScan | Find last occurrence of a character in a null-terminated string. |
AnsiStrScan | Find first occurrence of a character in a null-terminated string. |