vote up 1 vote down star

How to find out the content between two words or two sets of random characters?

The scraped page is not guaranteed to be Html only and the important data can be inside a javascript block. So, I can't remove the JavaScript.

consider this:

<html>
<body>
<div>StartYYYY "Extract HTML", ENDYYYY

</body>

Some Java Scripts code STARTXXXX "Extract JS Code" ENDXXXX.

</html>

So as you see the html markup may not be complete. I can fetch the page, and then without worrying about anything, I want to find the content called "Extract the name" and "Extract the data here in a JavaScript".

What I am looking for is in python:

Like this:

data = FindBetweenText(UniqueTextBeforeContent, UniqueTextAfterContent, page)

Where page is downloaded and data would have the text I am looking for. I rather stay away from regEx as some of the cases can be too complex for RegEx.

flag

63% accept rate
and what are UniqueTextBeforeContent, UniqueTextAfterContent in your example? – SilentGhost Jul 12 at 15:07
"as some of the cases can be too complex for RegEx." How come? You have the unique texts before or after. That's not particularily complex, and dead easy to do in regexps. – Lennart Regebro Jul 12 at 15:18
but if he has unique markers why trouble regex? – Anurag Uniyal Jul 12 at 15:29
True. regexps are not unable to handle it, but they are overkill. :) – Lennart Regebro Jul 12 at 15:50
@Lennart, I disagree -- this IS a case best handled by regex (and I'm definitely not a regex fanboy, mind;-). Still, if the OP doesn't want to hear about the best solution to his problem due to mistaken beliefs about "cases can be too complex for RegEx" (which is absolutely impossible if one trusts his specs), I'm not going to go courting downvotes -- fighting against the OP's mistaken beliefs isn't gonna gain me an accept, and once I hit the 200-points ceiling (early evening, usually;-) only an accept helps!-) – Alex Martelli Jul 13 at 3:42
show 3 more comments

4 Answers

vote up 0 vote down

Well, this is what it would be in PHP. No doubt there's a much sexier Pythonic way.

function FindBetweenText($before, $after, $text) {
    $before_pos = strpos($text, $before);
    if($before_pos === false)
        return null;
    $after_pos = strpos($text, $after);
    if($after_pos === false || $after_pos <= $before_pos)
        return null;
    return substr($text, $before_pos, $after_pos - $before_pos);
}
link|flag
vote up 2 vote down

if you are sure your markers are unique, do something like this

s="""
<html>
<body>
<div>StartYYYY "Extract HTML", ENDYYYY

</body>

Some Java Scripts code STARTXXXX "Extract JS Code" ENDXXXX.

</html>
"""

def FindBetweenText(startMarker, endMarker, text):
    startPos = text.find(startMarker)
    if startPos < 0: return
    endPos = text.find(endMarker)
    if endPos < 0: return

    return text[startPos+len(startMarker):endPos]

print FindBetweenText('STARTXXXX', 'ENDXXXX', s)
link|flag
text = "ppppYYYYyaddaXXXXblahYYYYqqqq"; FindBetweenText("XXXX", "YYYY", text) ... this produces '' but maybe the OP would prefer 'blah' – John Machin Jul 12 at 15:33
yes and there could be more complicated cases of marker embedded in marker, here I assume as OP said "unique markers" – Anurag Uniyal Jul 13 at 2:55
can you extend your example to take the date out of this blob of text? """<div id=bold>California, US</div><div id=bold>June 12, 2009</div><div id=bold>Status: Active</div>""" Note that location, date and status are variables and can be different. Example """US</div>""" or """2009</div>""" cannot be used as end tags. Thx – VN44CA Jul 13 at 4:35
you tell me the unique tags in the html and i will tell you the date – Anurag Uniyal Jul 13 at 6:44
vote up 0 vote down

[Slightly tested]

def bracketed_find_first(prefix, suffix, page, start=0):
    prefixpos = page.find(prefix, start)
    if prefixpos == -1: return None # NOT ""
    startpos = prefixpos + len(prefix)
    endpos = page.find(suffix, startpos) # DRY
    if endpos == -1: return None # NOT ""
    return page[startpos:endpos]

Note: the above returns only the first occurrence. Here is a generator which yields each occurrence.

def bracketed_finditer(prefix, suffix, page, start_at=0):
    while True:
        prefixpos = page.find(prefix, start_at)
        if prefixpos == -1: return # StopIteration
        startpos = prefixpos + len(prefix)
        endpos = page.find(suffix, startpos)
        if endpos == -1: return
        yield page[startpos:endpos]
        start_at = endpos + len(suffix)
link|flag
vote up 0 vote down

Here's my attempt, this is tested. While recursive, there should be no unnecessary string duplication, although a generator might be more optimal

def bracketed_find(s, start, end, startat=0):
    startloc=s.find(start, startat)
    if startloc==-1:
    	return []
    endloc=s.find(end, startloc+len(start))
    if endloc == -1:
    	return [s[startloc+len(start):]]
    return [s[startloc+len(start):endloc]] + bracketed_find(s, start, end, endloc+len(end))

and here is a generator version

def bracketed_find(s, start, end, startat=0):
    startloc=s.find(start, startat)
    if startloc==-1:
    	return
    endloc=s.find(end, startloc+len(start))
    if endloc == -1:
    	yield s[startloc+len(start):]
    	return
    else:
    	yield s[startloc+len(start):endloc]

    for found in bracketed_find(s, start, end, endloc+len(end)):
    	yield found
link|flag

Your Answer

Get an OpenID
or

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