I have a (long) text file containing lines of 80digits each (without any separator). I would like to display the lines that have a "1" as the 70th digit and a "2" as the 71th digit.
For instance this line : "8130455.72 0.74653771 8130457.72 0.74653782 8130459.71 0.74653792152812 9143301"
What would be your best strategy to deal with this problem please ? I did try something like ^.{71}[11$] in regex but it doesn't work...
I am using the regex of Notepad++ but if necessary I can write a bash script in order to extract these columns.
Thanks !