I need to do a search and replace of a set of numbers running down the left side of my page. The regular expression ([0-9]{1,2}[.]) catches everything I need to change. Unfortunately, it catches other stuff too.
In particular, my documents has tables, and I want the regular expression to capture only things in the left hand column of each table. How do I get it to exclude stuff in the other columns?