using System.Collections.Generic;
public class ReadTextFileWithNumbers {
static char[] delimiterChars = { ' ', ',', '.', ':', '\t' };
static Dictionary<string, string> dict = new Dictionary<string, string> ();
public static void Main (string[] args) {
string text = "one\ttwo three:four,five six seven";
text = "one\t2 three:4,five 6 seven";
text = "00\t0000000 0120:0111111111 ,0120 0120 0120";
static void ProcessWords (string text) {
string[] words = text.Split (delimiterChars);
for (int i = 0; i + 1 < words.Length; i+=2) {
if (int.TryParse (words[i], out int _) && int.TryParse (words[i+1], out int _)) {
dict.Add (words[i], words[i+1]);
if (dict.Count == 0) Console.WriteLine ("No pair with Integer values");
foreach (var d in dict) {
Console.WriteLine ($"{d.Key} - {d.Value}");