Hello,

given this kind of string:

"start SomeArbitraryAmountOfText start AnotherArbitraryAmountOfText end"

a search string like: r"start.*?end" would give me the entire string
from the first "start" to "end" : "start SomeArbitraryAmountOfText start
AnotherArbitraryAmountOfText end"

but I am interested only in the second part between the 2nd "start" and
the "end": "start AnotherArbitraryAmountOfText end"

What would be best, most clever way to search for that?

Or even more general: how do I exlude always the text between the last
"start" and the "end" tag assuming the entire text contains several
"start" tags spaced by an arbitrary amount of text befor the "end" tag?

Any ideas?

Thank you in advance. ;-)

Marcin

_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor

Reply via email to