A slightly simpler solution without LINQ:
static String GetNumbers(String input) => new String(Array.FindAll(input.ToCharArray(), Char.IsDigit));