I’m terrible with regex so I’m hoping someone can help! I’m trying to find any iframes that match any YouTube embeds in a document and replace them, for example any of the following:
<iframe src="http://youtube.com" width="100" height="200"></iframe>
<iframe src='http://youtube.com' width="100" height="200"></iframe>
<iframe width="100" src='http://youtube.com' width="100"></iframe>
etc.
Notice that there could be double quotes, single quotes, the order of the src
, height
and width
attributes could vary etc. Can anyone help!