I would like to extract a specific number; ie 25,000.00 but would like to remove the spaces and UNITED STATES OF. I can’t seem to have \s+ inside a ?<=
Regex expression as follows:
System.Text.RegularExpressions.Regex.Match(strInvoiceText,“(?<=PAID-UP ,ORDINARY)(\s+UNITED STATES OF\s+)[\d.,]+”).Value
Appreciate the help in advance!