I need to fashion a regex with the following requirements:

SEARCH_TERM_#1(.*)SEARCH-TERM_#2_OR_#3

So the regex should collect data between SEARCH_TERM_#1 and SEARCH_TERM_#2 or #3 WITHOUT including the search terms, AND it should choose as the 'right-side' search border whatever it finds first of #2 and #3.

To be specific I need the collected data start after 'style="background-image: url(' and stop BEFORE either '&cfs=1' or '\);"' which ever comes first (the search terms without the quotes '...') My problem is that regex machine captures '&cfs=1' and stops before '\);"' although '&cfs=1' comes before '\);"' . I'm using PowerGrep with the command 'collect data'.

Thanks, all comments are welcome.