Group,
I need to insert an "If/Then" statement that will require the command to check the string for multiple variables. In other words it needs to say something like this:
If Microsoft.VisualBasic.Mid(txtLine, 18, 1) = "C" or "T" or "G" or "W" Then
Go do something
End If
After doing some reading, it seems that "Regex" may be the way to correctly write this. However this is a new command to me and I'm not sure how to write something like this. Can you give me a hand?
In advance, thanks for the help.
Don