Regex regexObj = new Regex(@"(\b\d+\.\d{2}\b).*?(\b\d{11}\b)");
Match matchResults = regexObj.Match(subjectString);
while (matchResults.Success) {
for (int i = 1; i < matchResults.Groups.Count; i++) {
Group groupObj = matchResults.Groups[i];
if (groupObj.Success) {
}
}
Explanation:
(
\b
\d+
\.
\d{2}
\b
)
.*?
(
\b
\d{11}
\b
)
Group # 1 will contain a decimal number, group # 2 will contain an 11-digit number.
A " " - - -- , .
, , 12.3456, ; , , , . , number12.34 12.34.