Regex putting out blank

I have this line of text and perform the pictured regex match

However, when I put this in an assign
System.Text.RegularExpressions.Regex.Match(text, “(?<=(Grand Total USD +[\d+,+.]+))”).toString

I get a blank output…thoughts or ideas?

for the first only
grafik

for all in one match
grafik
grafik
(?<=Grand Total USD )([\d\,\.]+ ?)+

for amounts not anchored
grafik

Thanks for the help - really appreciate that - was going down a rabbit hole.

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.