I currently have a validation expression that almost works the way I want it to, only I am having trouble allowing spaces at the beginning of some rows. I'd like to support unlimited spaces at the beginning of rows.
Here is an example and the expression that I am having trouble with: ^(?=.?[ \t]([., \t]))(?:[1-9][0-9](?:[ \t]\1[ \t][1-9][0-9])+[ \t]*\r?\n?)+$
Here is the example string I'd like to match:
10 11 12 13 14 30
9 41 42 44 46 48
10 11 12 13 14 30
My first question which explains what I want to do specifically is found: here