Hi All,
i'm trying to use regular expressions to filter lines from an input text
file and write to an output
I am looking for lines containing the "Y" character
here is the code part:
...
If myString = "*Y*" Then
OutputFile.WriteLine myString
End if
...
But it looks like this is loking for a match where the star "*"
character is considered as a charcater and not as a wildcard?