Match All Words Beginning With 'a'
This code can be adapted to match any character or word in a list using a textbox as follows:
"^[" & TextBox2.Text & "]\w+"
However, for this to work the text in the main textbox needs to be made into a list replacing whitespaces, tabs, carriage returns, etc. with a carriage return. The list doesn...
Submitted by anonymous - a year ago