up vote 0 down vote favorite
share [g+] share [fb]

I have an end tag followed by a carriage return line feed (x0Dx0A) followd by one or more tabs (x09) followed by a new start tag .

Something like this:

</tag1>x0Dx0Ax09x09x09<tag2> or </tag1>x0Dx0Ax09x09x09x09x09<tag2>

What Python regex should I use to replace it with something like this:

</tag1><tag3>content</tag3><tag2>

Thanks in advance.

link|improve this question
what have you tried? why doesn't it work? – msw Jul 23 '10 at 21:17
1  
Parsing XML yourself? Not a good idea. IT seams that you will have additional problems porting your code to Python 3. How about trying to use an existing xml parsing solutions instead? – sorin Jul 23 '10 at 21:25
feedback

2 Answers

Here is code for something like what you say that you need:

>>> import re
>>> sample = '</tag1>\r\n\t\t\t\t<tag2>'
>>> sample
'</tag1>\r\n\t\t\t\t<tag2>'
>>> pattern = '(</tag1>)\r\n\t+(<tag2>)'
>>> replacement = r'\1<tag3>content</tag3>\2'
>>> re.sub(pattern, replacement, sample)
'</tag1><tag3>content</tag3><tag2>'
>>>

Note that \r\n\t+ may be a bit too specific, especially if production of your input is not under your control. It may be better to adopt the much more general \s* (zero or more whitespace characters).

Using regexes to parse XML and HTML is not a good idea in general ... while it's hard to see a failure mode here (apart from elementary errors in getting the pattern correct), you might like to tell us what the underlying problem is, in case some other solution is better.

link|improve this answer
feedback

The regex for a generic version of this (i.e. will match regardless of the #s listed with the tags) is:

(</tag\d+>)x0Dx0A(?:x09)+(<tag\d+>)

You can use this in what cjrh provided to do the replacement, as follows:

import re
input   = '</tag1>x0Dx0Ax09x09x09<tag2> or </tag1>x0Dx0Ax09x09x09x09x09<tag2>'
pattern = '(</tag\d+>)x0Dx0A(?:x09)+(<tag\d+>)'
replace = r'\1<tag3>content</tag3>\2'
output  = re.compile(pat, re.M | re.S).sub(repl,input)
link|improve this answer
Your grouping parentheses are in strange places; how do propose to actually use that regex?? – John Machin Jul 24 '10 at 1:02
Honestly, today was my first venture into Python Regex, and some of that was from improper translation between what I'm used to in PHP and what I saw elsewhere in Python. I then saw that others were editing their posts and thought they had it solved. Will adjust mine accordingly to be more complete. – Jeffrey Blake Jul 24 '10 at 1:20
Edited (and tested). I believe this performs exactly as requested (at least, it did in my tests!) – Jeffrey Blake Jul 24 '10 at 1:38
The likelihood that the OP has literally "x0Dx0Ax09" etc in his data is rather small ... – John Machin Jul 24 '10 at 3:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.