First Name FNAME Text Paul
City CITYNAME Text Miami
Price PRC Amount 5.00
Start Date STDT Date 5/25/2022
Say I supply the strings “Price” and “Amount”, I want to get the value “5.00” or if I supply “City” and “Text” I get back “Miami”
In other words, knowing the field name and type, I want the value on the same line after the type.
The middle value (ie FNAME, CITYNAME) is the internal database field name and I won’t know that so can’t use it in the Regex expression.
I’d be fine with splitting it on VbCrLf and then looping through the rows until I find the row I want and then only Regex parsing that row, if it’s easier to do “find the text after ‘First Name * Text’”