Hello
I need some assistance with this regex.
I need to capture all text after “additional comments:” up until “< Last page visited.”
The number of lines can vary which is what I can’t figure out.
My attempt is below.
A sample of my text is below.
Yoichi
(Yoichi)
2
Hi,
Can you try the following expression?
System.Text.RegularExpressions.Regex.Match(strData,"(?<=additional comments:)[\s\S]+(?=> Last page visited)").Value
Regards,
system
(system)
Closed
4
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.