Hi,
I'm comparing attached two files & trying to form a replacement for <Style ss:ID="...."> with the corresponding counterpart on the other side. But I am not able to generate a regular expression which will do the job. Could somebody help. Attached - a.txt, b.txt.
FYI,
I tried all below possibilities -
L E F T S I D E = R I G H T S I D E
1. \<Style ss:ID=".*"\> = \<Style ss:ID=".*"\>
2. \<Style ss:ID="s\d*"\> = \<Style ss:ID="s\d*"\>
3. <Style ss:ID="s\d*"> = <Style ss:ID="s\d*">
4. <Style.*> = <Style.*>
I'm comparing attached two files & trying to form a replacement for <Style ss:ID="...."> with the corresponding counterpart on the other side. But I am not able to generate a regular expression which will do the job. Could somebody help. Attached - a.txt, b.txt.
FYI,
I tried all below possibilities -
L E F T S I D E = R I G H T S I D E
1. \<Style ss:ID=".*"\> = \<Style ss:ID=".*"\>
2. \<Style ss:ID="s\d*"\> = \<Style ss:ID="s\d*"\>
3. <Style ss:ID="s\d*"> = <Style ss:ID="s\d*">
4. <Style.*> = <Style.*>
Comment