Delphi Programming RTL Reference|By Category|Alphabetically|By Unit
function Pos(Str, Source :
string):
integer;
Returns an integer specifying the position of the first occurrence of one string within another.
Pos looks for the first complete occurence of Str in Source. If it finds one, it returns the character position in Source of the first character in Str as an integer value, otherwise it returns 0.
Pos is case sensitive.
var s : string;
i : integer;
s:='DELPHI PROGRAMMING';
i:=Pos('HI PR',s);
//i=5;
|
String Types in Delphi
Understanding and managing string data types in Delphi's Object Pascal. Learn about differences between Short, Long, Wide and null-terminated strings.
Delete,
Copy,
Length,
Concat,
Insert,
PosEx,