Atlanta Custom Software Development 

 
   Search        Code/Page
 

User Login
Email

Password

 

Forgot the Password?
Services
» Web Development
» Maintenance
» Data Integration/BI
» Information Management
Programming
  Database
Automation
OS/Networking
Graphics
Links
Tools
» Regular Expr Tester
» Free Tools

Count number of words with the RegExp object

Total Hit ( 3772)

Rate this article:     Poor     Excellent 

 Submit Your Question/Comment about this article

Rating


 


A Visual Basic function that counts the number of words in a sentence or text file can become quickly very complex, and usually doesn't execute fast enough for most purposes. Thanks to the RegEx object that comes with the Microsoft VBScript Regular Expression type library, this task becomes trivial. Here's all the code that you need:

Click here to copy the following block
' Count the number of words in the string argument
'
' NOTE: requires a reference to the
'    Microsoft VBScript Regular Expression type library

Function CountWords(ByVal Text As String) As Long
  Dim re As New RegExp
  ' the following pattern means that we're looking for a word character (\w)
  ' repeated one or more times (the + suffix), and that occurs on a word
  ' boundary (leading and trailing \b sequences)
  re.Pattern = "\b\w+\b"
  ' search for *all* occurrences
  re.Global = True
  ' the Execute method does the search and returns a MatchCollection object
  ' which in turn exposes the Count property,
  ' i.e. the result we're interested into
  CountWords = re.Execute(Text).Count
End Function


Submitted By : Nayan Patel  (Member Since : 5/26/2004 12:23:06 PM)

Job Description : He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting.
View all (893) submissions by this author  (Birth Date : 7/14/1981 )


Home   |  Comment   |  Contact Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.