in reply to Regex match: Ignoring first occurences

Maybe you simply want to avoid (opening) angle brackets to just match the tag values?

file:([^<>]*?)\.xml

Update Made the dot (.) in the regex more specific, thanks to Laurent_R.

Replies are listed 'Best First'.
Re^2: Regex match: Ignoring first occurences
by cryion (Initiate) on Aug 10, 2015 at 14:17 UTC
    Thank you very much, this seems to work fine. I had that idea as well but obviously no idea how to write that expression.