getSettlethe literal text getSettle (case sensitive) Non-Capturing Group(?:Now|ment) Nowthe literal text Now (case sensitive) mentthe literal text ment (case sensitive) Totalthe literal text Total (case sensitive) .+?any character (except for line terminators), repeated at least once
Group settlement(?<settlement>\d+) \d+a digit, repeated at least once
.+?any character (except for line terminators), repeated at least once
\d+a digit, repeated at least once
.+?any character (except for line terminators), repeated at least once
Group Percent(?<Percent>.+) .+any character (except for line terminators), repeated at least once
g modifier: global. Finds all matches instead of stopping after the first
m modifier: multiline. Causes ^ and $ to match the start and end of each line, not only the start and end of the string