Help me to create regex to only get numbers

Hi @StevenIsRobotOnline

Matches= System.Text.RegularExpressions.Regex.Matches(yourstringinput,"((?<=[A-Z]+\s+[A-Z]+\s*\-?)\d+)")

Datatype of Matches is IEnumerable(System.Text.RegularExpressions.Match)

Hope it helps!!