Hello, @balancedcircular, @terry-r, @coises and All,
I suppose that the following regex S/R should be close to what you want ! I consider the entire line because you may have other lines with attributes Name and/or Comments
FIND (?-si)^(<RectangularPart Version=.+ Name=")\d\d\d (.+/.).+?(\d")(.+ Comments=").+(?=>)
REPLACE $1$2$3$4$2$3
As @coises said, try this global replacement on a copy of your file !
If everything works as expected, I’ll explain you, next time, how all the regex syntax means !
Best Regards,
guy038
I almost forgot the last line of your post. To simultaneously search for any of the three words Rafter, C.Tie and Web, simply use the regex (?-i)Rafter|C\.Tie|Web