I have followed the tutorial for the parse tool and I have checked it in a regular expression reader but it still leaves blank columns. My data isn't clean so I'm trying to weed out stuff that doesn't follow this format.
Example of what data looks like
1 T2
2 52
1 61
3 5
BL
TJ
2 11
3 T5
102142
43244
The data is supposed to have either a 1,2,3 (the shift) a space and then either 2 digits, 1 digit or a T and then a digit. This is the regular expression I wrote
(^\d)\s([T\d][\d\s]$)
