Delphi String Replace Fonksiyonu Kullanımı

Kategori

Delphi String Replace Fonksiyonu Kullanımı

Delphi String Replace Fonksiyonu 4 parametre alır ilk parametre değiştirilecek string 2. parametre değiştirilecek string 3. parametre değiştirilecek string yerine konulacak değer. 4. parmetre array tipindedir. değişim için ek özellikler beliritir.

 

var
 input , output: string;

begin
  input := 'Hallo World Dalphi Öğraniyorum';

  output:= stringreplace(input , ' a ', ' e',  [rfReplaceAll, rfIgnoreCase]);
  ShowMessage('Önce= '+input );
  ShowMessage('Sonra= '+output);
end;

 

Output:

Önce= Hallo World Dalphi Öğraniyorum
Sonra= Hello World Delphi Öğreniyorum

 

Facebookta Paylaş Tweetle