please help me to resolve this. I stuck on this code
My contents:
<a href="/path/1232432432">Get Me</a>
<a href="/path/7845454354"><img src="imagelink.png" /></a>
<a href="#">Other link</a>
I want to get innertext "Get Me"
My regex: /(?<=\/path\/)(?!.*img).*?(?=<\/a>)/g
My results:
1232432432">Get Me
I need exception for getting item like remove digit value after '/path/...'
Any help will be appreciated, thanks..