vote up -1 vote down star

Sample Text:

SUBJECT = 'NETHERLANDS MUSIC EPA'
CONTENT = 'Michael Buble performs in Amsterdam Canadian singer Michael Buble performs during a concert in Amsterdam, The Netherlands, 30 October 2009. Buble released his new album entitled 'Crazy Love'. EPA/OLAF KRAAK '

Expected result:

"
NETHERLANDS MUSIC EPA | 36 before
Michael Buble performs in Amsterdam Canadian singer Michael Buble performs during a concert in Amsterdam, The Netherlands, 30 October 2009. Buble released his new album entitled 'Crazy Love'. EPA/OLAF KRAAK
"

How can I accomplish this in Python?

flag

73% accept rate
3  
Paul, please confirm: "|36 before" seems to be "left in there" by accident (not to found in input text). So, in a nutshell you want to add a starting quote on its own line, remove "SUBJECT = '" and "CONTENT = '" and add a quote on its own after all that. ? – mjv Oct 31 at 5:37

2 Answers

vote up 1 vote down check

Looks like you want something like...:

import re

x = re.compile(r'^([^\|]*?)\s*\|[^\n]*\n\s*(.*?)\s*$')

s = """NETHERLANDS MUSIC EPA | 36 before
Michael Buble performs in Amsterdam Canadian singer Michael Buble performs during a concert in Amsterdam, The Netherlands, 30 October 2009. Buble released his new album entitled 'Crazy Love'. EPA/OLAF KRAAK"""

mo = x.match(s)

subject, content = mo.groups()

print 'SUBJECT =', repr(subject)
print 'CONTENT =', repr(content)

which does emit, as you require,

SUBJECT = 'NETHERLANDS MUSIC EPA'
CONTENT = "Michael Buble performs in Amsterdam Canadian singer Michael Buble performs during a concert in Amsterdam, The Netherlands, 30 October 2009. Buble released his new album entitled 'Crazy Love'. EPA/OLAF KRAAK"

Or maybe you want to do the reverse (as a comment suggested)? then they key RE could be

y = re.compile(r'^.*SUBJECT\s*=\s*\'([^\']*)\'.*CONTENT\s*=\s*"([^"]*)"',
               re.DOTANY)

and you can use this similarly to get a match-object, extract subject and content as its groups, and format them for display as you wish.

In either case it's possible that you may need tweaks -- since you haven't given precise specs, just one single example!, it's hard to generalize reliably.

link|flag
1  
haven't you reversed the problem ? it seems the OP wants to parse the output of your script to generate the input of your script... – Adrien Plisson Oct 31 at 8:10
@Adrien, maybe - just in case, I showed a solution for the reverse case as well, so, tx for pointing it out. – Alex Martelli Oct 31 at 23:31
thanks a lot! :) – paul Nov 4 at 6:59
@paul, you're welcome! – Alex Martelli Nov 4 at 7:01
vote up 0 vote down

Here's a simple solution. I am using Python 3 but I think this code would be identical in 2:

>>> import re
>>> pair = re.compile("SUBJECT = '([^\n]*)'\nCONTENT = '([^\n]*)'\n", re.MULTILINE)
>>> s = """SUBJECT = 'NETHERLANDS MUSIC EPA'
... CONTENT = 'Michael Buble performs in Amsterdam Canadian singer Michael Buble performs during a concert in Amsterdam, The Netherlands, 30 October 2009. Buble released his new album entitled 'Crazy Love'. EPA/OLAF KRAAK '
... """
>>> m = pair.match(s)
>>> m.group(1) + "\n" + m.group(2)
"NETHERLANDS MUSIC EPA\nMichael Buble performs in Amsterdam Canadian singer Michael Buble performs during a concert in Amsterdam, The Netherlands, 30 October 2009. Buble released his new album entitled 'Crazy Love'. EPA/OLAF KRAAK "
link|flag

Your Answer

Get an OpenID
or

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