I need to get the src inside the <img> tag, this is the structure in the console:
<img src=\"file:///data/user/0/com.app/cache/ImagePicker/2b807bcc-f622-4019-abf1-6875c1130a09.jpg\">
dont know why theres a \ in the beginning and in the end, but thats what im looking for with match, get all the src from all the <img> tags incluiding " ", how would be the regex? thanks :)
UPDATE:
this is the actual regex that im using to get all the src from all <img> tags:
console.log(this.state.content.match(/(?=<img src=).*?(?=>)/g));
it returns to me:
<img src="file:///data/user/0/com.app/cache/ImagePicker/2b807bcc-f622-4019-abf1-6875c1130a09.jpg"
as you can see still the <img src= thats the only thing that i need to ignore i think