<div>
<input data-content="This is a text string with a <br /> inside of it" />
</div>
I need a regex to find all the <br />
tags inside the data-attribute tag of the input tag.
Note: There could be other <br />
tags in the page (outside of the attributes) that I don't want to include, so the regex should only pull data inside of the data-content attribute.
Thanks!