Trying to parse an outlined document.
The bulk of my rows include [Orig] between the outline and the text I want to parse. I can parse this with a Regex Tool using (\d.+) (\[Orig\] .+) (thanks to the Community). This is NOT my question.
My problem is outlined below. Pun totally intended.
There are a few "reject" rows that lack the [Orig].
- 233-4 Inversion Requirement
- 626-2.1.1 Seating Characteristics Blah Blah
How can I insert a "[Add]" to match the standard configuration and enable it to be parsed with a similar Regex Tool (\d.+) (\[Add\] .+)????
The outline is 1-N. So, its not just a matter of inserting it X positions from the left.
Thanks