Returns the position of the N-th occurrence of a substring in a string.
Source position: strutils.pp line 192
function NPos(  | 
const C: string;  | 
const S: string;  | 
N: Integer  | 
):SizeInt;  | 
C  | 
  | 
Substring to search for.  | 
S  | 
  | 
String to search.  | 
N  | 
  | 
Which position to return.  | 
NPos checks S for the position of the N-th occurrence of C. If C occurs less than N times in S, or does not occur in S at all, 0 is returned. If N is less than 1, zero is returned.
None.
  | 
Search position of Nth word in a string.  | 
|
  | 
Search for a substring in a string, using wildcards.  | 
|
  | 
Search for substring in a string.  | 
|
  | 
Search for the occurrence of a character in a string, starting at a certain position.  |