XL: How to Return the Nth Word from a StringLast reviewed: February 3, 1998Article ID: Q152568 |
The information in this article applies to:
SUMMARYThis article contains a sample Microsoft Visual Basic for Applications function that extracts a particular word from a sentence.
MORE INFORMATIONMicrosoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific needs. If you have limited programming experience, you may want to contact the Microsoft fee-based consulting line at (800) 936-5200. For more information about the support options available from Microsoft, please see the following page on the World Wide Web:
http://www.microsoft.com/support/supportnet/refguide/default.asp To Create the Custom FunctionType the following in a new Visual Basic module:
Function FindNthWord(WordStrg As Variant, occur) ' Declare variables where WordStrg is the string whose Nth word you ' want to extract and occur is the number of the word (or Nth word) ' you want to extract from the string Dim y, z As Integer Dim WordSearch() y = (Len(WordStrg) - (Len(Application.Substitute(WordStrg, " ", _ "")))) / 1 ReDim WordSearch(1 To (y + 1)) z = 1 For SearchLoop = 1 To y z = (InStr(z, WordStrg, " ")) WordSearch(SearchLoop) = Left(WordStrg, z) WordStrg = Application.Trim(Mid(WordStrg, z + 1)) z = 1 Next SearchLoop WordSearch(y + 1) = WordStrg ' Assigns the result to the function FindNthWord = WordSearch(occur) End Function To Use the Custom Function
REFERENCES"Visual Basic User's Guide," version 5.0, Chapter 3, "Creating a User- Defined Function"
|
Additional query words: 5.00 5.00a 5.00c 7.00 7.00a XL98 XL97 XL7 XL5
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |