I have this regex :
/<iframe[\s\S]*?data-context[\s\S]*?<\/iframe>/ig
and I want to match all iframe that contain the data-context attribute. The problem is that if there's two iframe and the first one don't have the data-context but the second have it, it match from the first to the second one.
Any idea how to make it more "lazy" ?