Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Object-Pascal / Delphi-Language (https://www.delphipraxis.net/32-object-pascal-delphi-language/)
-   -   Delphi zeichen zählen (https://www.delphipraxis.net/24458-zeichen-zaehlen.html)

G G 21. Jun 2004 13:53


zeichen zählen
 
hi, kurze frage, wie zählt man wieviel "," in meinem string vorkommen?
gibts da ne funktion?

Sharky 21. Jun 2004 13:57

Re: zeichen zählen
 
Zitat:

Zitat von G G
hi, kurze frage, wie zählt man wieviel "," in meinem string vorkommen?
gibts da ne funktion?

Einfach eine kleine Funktion schreiben:

Delphi-Quellcode:
function CharCount (s : String; c : Char) : Integer;
var
  ndx,
  count : Integer;
begin
  count := 0;
  for ndx := 1 to Length (s) do
  begin
    if (s[ndx] = c) then Inc (count);
  end;
  result := count;
end;

procedure TForm1.Button3Click(Sender: TObject);
begin
  ShowMessage ('Es gibt ' + IntToStr (CharCount (',sdf,sdfsdf,',',')));
end;

Nicodius 21. Jun 2004 14:23

Re: zeichen zählen
 
du kansnt aber auch nur mit result als variable arbeiten (inc(result) etc ;)

Sharky 21. Jun 2004 14:34

Re: zeichen zählen
 
Zitat:

Zitat von Nicodius
du kansnt aber auch nur mit result als variable arbeiten (inc(result) etc ;)

Hai Nicodius,

durch diesen Beitrag von negaH habe ich mir das jetzt so angewöhnt ;-)


Alle Zeitangaben in WEZ +1. Es ist jetzt 13:38 Uhr.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz