On 10/23/21 16:56, Kevin Pye wrote:
Does $NewRev ~~ s/ .* 'Release Notes <strong>V' // have the problem?
I fixed the hang. I was giving the regex a zero length file. $NewRev ~~ s/ .* "Release Notes <strong>V" // worked. Where I get into problems is with things like `</strong>` and `</div></div>` and such. So what I am still looking for is a better way to put special characters into a regex -T