[Overview][Constants][Types][Procedures and functions][Index] |
Like StrScan but compares only the specified number of characters in MaxLen.
Source position: lazstringutils.pas line 107
function StrLScan( |
P: PChar; |
c: Char; |
MaxLen: Cardinal |
):PChar; |
P |
|
Pointer to characters examined in the routine. |
c |
|
Character to locate in the specified values. |
MaxLen |
|
Maximum number of characters examined in the routine. |
Pointer to the character located in P, or Nil.
The return value is Nil when P is unassigned (contains Nil), or when P contains a terminating null character prior to finding a match for c before comparing the requested number of characters in MaxLen.
When c is located in P, the return value is a PChar pointer to the location where c was located.
Version 4.0 | Generated 2025-05-03 | Home |