StringReplace (rtl)
De Wiki1000
(Différences entre les versions)
Ligne 1 : | Ligne 1 : | ||
− | |||
<source lang="delphi">Function StringReplace(const SourceString:string; const OldPattern:string; const NewPattern:string):string;</source> | <source lang="delphi">Function StringReplace(const SourceString:string; const OldPattern:string; const NewPattern:string):string;</source> | ||
− | + | Cette fonction remplace toutes les occurrences de oldPattern par newPattern dans SourceString. | |
{|class="wikitable" | {|class="wikitable" | ||
− | |||
− | |||
− | |||
|- | |- | ||
|SourceString | |SourceString | ||
− | | | + | |La chaîne dans laquelle remplacer |
|- | |- | ||
|OldPattern | |OldPattern | ||
− | | | + | |La chaîne à remplacer |
|- | |- | ||
|NewPattern | |NewPattern | ||
− | | | + | |La chaîne de remplacement |
|- | |- | ||
|Result | |Result | ||
− | | | + | |La chaîne en retour |
|} | |} | ||
Version actuelle en date du 27 juin 2011 à 13:39
Function StringReplace(const SourceString:string; const OldPattern:string; const NewPattern:string):string;
Cette fonction remplace toutes les occurrences de oldPattern par newPattern dans SourceString.
SourceString | La chaîne dans laquelle remplacer |
OldPattern | La chaîne à remplacer |
NewPattern | La chaîne de remplacement |
Result | La chaîne en retour |
Exemple
begin end;
Voir aussi: