Hi All,
How to extract 10507178 from below string.here all are not constant.but format is same
StatusCode_10.178.28.50_1406758126523_19607_10507178
General one to get the last number in the string (after last underscore )
"_(?<YourField>\d+)$"
Based on that one example, you could use this:
\w+_\d+\.\d+\.\d+\.\d+_\d+_\d+_(<field_name>\d+)