I'm trying to get all ' characters that are inside of the <> tag from a string using RegEx. The string might contain the ' outside of <> tag which I don't want to get.
The string is e.g.:
"<img src = '/path/to/the/file' title = 'My Image1'/>
<img src = '/path/to/the/file2' title = 'My Image2'/>
Don't need to get quotes from this line.";
Expected:
The <> tags can include not only the info from example.