Articles   Members Online:
-Article/Tip Search
-News Group Search over 21 Million news group articles.
-Delphi/Pascal
-CBuilder/C++
-C#Builder/C#
-JBuilder/Java
-Kylix
Member Area
-Home
-Account Center
-Top 10 NEW!!
-Submit Article/Tip
-Forums Upgraded!!
-My Articles
-Edit Information
-Login/Logout
-Become a Member
-Why sign up!
-Newsletter
-Chat Online!
-Indexes NEW!!
Employment
-Build your resume
-Find a job
-Post a job
-Resume Search
Contacts
-Contacts
-Feedbacks
-Link to us
-Privacy/Disclaimer
Embarcadero
Visit Embarcadero
Embarcadero Community
JEDI
Links
Count the number of words in a string Turn on/off line numbers in source code. Switch to Orginial background IDE or DSP color Comment or reply to this aritlce/tip for discussion. Bookmark this article to my favorite article(s). Print this article
06-Feb-04
Category
Object Pascal-Strings
Language
Delphi 2.x
Views
113
User Rating
No Votes
# Votes
0
Replies
0
Publisher:
DSP, Administrator
Reference URL:
DKB
			Author: Lou Adler

How to count the number of words in a string 

Answer:

1   { ... }
2   type
3     TCharSet = TSysCharSet;
4     { ... }
5   
6   function WordCount(const S: string; const WordDelims: TCharSet): Integer;
7   var
8     SLen, I: Cardinal;
9   begin
10    Result := 0;
11    I := 1;
12    SLen := Length(S);
13    while I <= SLen do
14    begin
15      while (I <= SLen) and (S[I] in WordDelims) do
16        Inc(I);
17      if I <= SLen then
18        Inc(Result);
19      while (I <= SLen) and not (S[I] in WordDelims) do
20        Inc(I);
21    end;
22  end;
23  
24  //Use the following statement to call the function:
25  
26  WordCount(Edit1.Text, [' ', ','])


			
Vote: How useful do you find this Article/Tip?
Bad Excellent
1 2 3 4 5 6 7 8 9 10

 

Advertisement
Share this page
Advertisement
Download from Google

Copyright © Mendozi Enterprises LLC