Pos (rtl)
De Wiki1000
(Différences entre les versions)
Ligne 18 : | Ligne 18 : | ||
<source lang='delphi'> | <source lang='delphi'> | ||
+ | procedure foo(const S:string); | ||
begin | begin | ||
+ | if Pos('foo',S)<>0 then | ||
+ | begin | ||
+ | ... | ||
+ | end; | ||
end; | end; | ||
</source> | </source> | ||
Voir aussi: | Voir aussi: | ||
+ | |||
+ | *[[PosEx (rtl)|PosEx]] | ||
{{Footer|Développement DSM}} | {{Footer|Développement DSM}} | ||
[[category:RTL Chaîne]] | [[category:RTL Chaîne]] | ||
− |
Version actuelle en date du 11 août 2009 à 14:49
Function Pos(Substr:String; S:String):Integer;
Cette fonction retourne la position d'une sous-chaîne à l'intérieur d'une chaîne de caractères.
Result | La position de la sous-chaîne dans la chaîne; zéro si la sous-chaîne n'est pas trouvée. |
Substr | Chaîne à retrouver. |
S | Chaîne où rechercher. |
Exemple
procedure foo(const S:string); begin if Pos('foo',S)<>0 then begin ... end; end;
Voir aussi: