E
elziko
I have created a Regular Expression to get the text between two strings for
example, starting in AB and ending in CD:
Dim reCategory As New Regex("AB((.|\n)*?)CD", RegexOptions.IgnoreCase)
This works but also returns the original AB and CD text in the matches. Is
there an easy way of making sure each match discards the AB and CD text?
example, starting in AB and ending in CD:
Dim reCategory As New Regex("AB((.|\n)*?)CD", RegexOptions.IgnoreCase)
This works but also returns the original AB and CD text in the matches. Is
there an easy way of making sure each match discards the AB and CD text?