\[the literal [ (9110 / 1338 / 5B16)
Namethe literal text Name (case sensitive) \]the literal ] (9310 / 1358 / 5D16)
Group Name(?<Name>[\s\S]*?) *?matches any number of characters from the set below:
\sa Unicode whitespace character
\Sany character that is not Unicode whitespace
\[the literal [ (9110 / 1338 / 5B16)
Agethe literal text Age (case sensitive) \]the literal ] (9310 / 1358 / 5D16)
Group Age(?<Age>[\s\S]*?) *?matches any number of characters from the set below:
\sa Unicode whitespace character
\Sany character that is not Unicode whitespace
\[the literal [ (9110 / 1338 / 5B16)
MobileNumberthe literal text MobileNumber (case sensitive) \]the literal ] (9310 / 1358 / 5D16)
*?matches any number of characters from the set below:
\sa Unicode whitespace character
\Sany character that is not Unicode whitespace
Billing addressthe literal text Billing address (case sensitive) *?matches any number of characters from the set below:
\sa Unicode whitespace character
\Sany character that is not Unicode whitespace
Delivery addressthe literal text Delivery address (case sensitive) Non-Capturing Group(?:\s*.*) \s*a Unicode whitespace character, repeated any number of times
.*any Unicode character (except for line terminators), repeated any number of times
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