Here's what I'm trying to do:
I have a private or user defined string. I would like to define a list of URLs, such as:
http://example.com/?item={REPLACE_ME}
http://example.net/?item={REPLACE_ME}
http://example.org/?item={REPLACE_ME}
These URLs are to RSS content.
I would like to use a string replace on each URL, replacing {REPLACE_ME} with the string given in the private/user-defined string.
Then, I would like to supply the altered URLs to Fetch Feed (or similar), to get a combined feed.
I'm not sure how to pull this off without creating an individual String Replace and URL Builder for every URL. Ideally, I'd have one string replace (as it's static), and somehow emit the URLs in a Loop, but I can't seem figure out how to do so.