public static void Main()
FindKey("5SampleText42964");
private static void FindKey(string text)
if(!string.IsNullOrWhiteSpace(text) && text.Length < 2)
int keyLength = (int)Char.GetNumericValue(text[0]);
char[] keySliced = text.ToCharArray()
.Where(x => char.IsDigit(x))
foreach(char c in keySliced)
Console.WriteLine("Key[{0}] -> {1}", index, c);