udf to extract 2 words at a time

LFKim2018

Active Member
Joined
Mar 24, 2018
Messages
267
I found a UDF that extracts a word at a time, how do I change the code to extract 2 words at a time?
many many thanks


Code:
Function findword(Source As String, Position As Integer)
    Dim arr() As String
    arr = VBA.Split(Source, " ")
    xCount = UBound(arr)
    If xCount < 1 Or (Position - 1) > xCount Or Position < 0 Then
        findword = ""
    Else
        findword = arr(Position - 1)
    End If
End Function
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
Instead of giving us some code that doesn't do what you want, could you give us some sample data and the expected result, together with explanation in relation to that sample data?
 
Last edited:
Upvote 0
Mr. Peter_SSs
sorry about that..

say I have a string like: "one two three four" in column A
in column B > the result of =findword(A1,1) would be "one"
in column C > the result of =findword(A1,2) would be "two"
.. and so on
now, How do I get 2 words at a time, like "one two" then "three four" so on...
and it would be nice to be applicable for any delimiter aside from space - say comma,slash,colon etc..
many thanks
 
Upvote 0
You did not say what you want returned if there are an odd number of words and you asked for that odd word or if you specified a word group that did not exist. I assumed the empty string would be returned for those conditions. Here is a UDF (user defined function) that will do what you asked for...
Code:
[table="width: 500"]
[tr]
	[td]Function TwoWords(ByVal Txt As String, WhichTwo As Long)
  Dim X As Long, Words() As String
  For X = 1 To Len(Txt)
    If Mid(Txt, X, 1) Like "[!A-Za-z0-9]" Then Mid(Txt, X) = " "
  Next
  Words = Split(Application.Trim(Txt))
  On Error GoTo NoMoreWords
  TwoWords = Words(2 * WhichTwo - 2) & " " & Words(2 * WhichTwo - 1)
  Exit Function
NoMoreWords:
  TwoWords = ""
End Function[/td]
[/tr]
[/table]


HOW TO INSTALL UDFs
------------------------------------
If you are new to UDFs, they are easy to install and use. To install it, simply press ALT+F11 to go into the VB editor and, once there, click Insert/Module on its menu bar, then copy/paste the above code into the code window that just opened up. That's it.... you are done. You can now use TwoWords just like it was a built-in Excel function. For example, to retrieve words 5 and 6, you would ask for the 3rd group like this...

=TwoWords(A1,3)

If you are using XL2007 or above, make sure you save your file as an "Excel Macro-Enabled Workbook (*.xlsm) and answer the "do you want to enable macros" question as "yes" or "OK" (depending on the button label for your version of Excel) the next time you open your workbook.
 
Upvote 0
and it would be nice to be applicable for any delimiter aside from space - say comma,slash,colon etc..
Here is another pretty short UDF that permits this** and also gives you the choice of how many "words" to extract each time.

** There may be some delimiters that fail with my code due to them being "special characters" within regular expressions. It would be possible to allow those delimiters too, but more difficult to implement so I haven't tried to do that since I took your enquiry to just be a general one for interest.

Each formula below is copied across to column E.
Row 1 is to extract the default 2 words with space delimiter
Row 3 extracts groups of 3 words with the default space delimiter
Row 5 extracts 2 words but with comma delimiter
Row 7 extracts 4 "words" with "z" delimiter
Row 9 extracts single words with the 3-character " / " delimiter.

Code:
Function GetWords(s As String, WhichLot As Long, Optional Num As Long = 2, Optional Delim As String = " ") As String
  With CreateObject("VBScript.Regexp")
    .Global = True
    .Pattern = Replace(Replace("([^#]+#){%}([^#]+)(?=#|$)", "#", Delim), "%", Num - 1)
    If WhichLot <= .Execute(s).Count Then GetWords = .Execute(s)(WhichLot - 1)
  End With
End Function

Excel Workbook
ABCDE
1one two three four five six sevenone twothree fourfive six
2
3one two three four five six sevenone two threefour five six
4
5one,two,three,four,fiveone,twothree,four
6
7abczdefzghijzwwwazbbbbzccabczdefzghijzwwwa
8
9one / two / three / fouronetwothreefour
Sheet1
 
Last edited:
Upvote 0
Here is another pretty short UDF that permits this** and also gives you the choice of how many "words" to extract each time.

Mr. Peter_SSs
your dedication to help is beyond words!
Thank you very very much..
 
Last edited by a moderator:
Upvote 0
You're welcome. Thank you you for your kind words. :)
 
Upvote 0

Forum statistics

Threads
1,214,822
Messages
6,121,770
Members
449,049
Latest member
greyangel23

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top