Use Regex to extract string between two words in a multi line string.
HI.
I am using Microsoft Access VBA in a Windows 10 machine.
I am trying to extract data from a multi-line string copied from a web page whose format is always the same.
By example , one of the lines in the web page would be
Private Function Regex_GetInfo(ByVal strMultiline As String) As String
Dim str1 As String: str1 = "Circuit Name:"
Dim str2 As String: str2 = "Issued by:"
It could be something like :
Open in new window
(Not tested yet)