I have the following string. Each number is separated by a tab
35 64 -33 -39 37 49 41 34
I am trying to find a suitable regex expression to match that string so I can use it in my C# program. So far I have tried a few online tools but those tools could not generate it.
What I am trying to achieve is to match
56 110 -47 -58 57 73 59 47
but not
56 110 -47 -58 a 73 59 47
EDIT: the regex must match any number. Those are just a few examples from my file. The numbers can be both positive, negative and 0
I am using the regex to validate if a text file is consited only of lines with the above structure (letters only and tabs as separation).