I’ve this string
"<div><a data-url="https://www.google.com/something/something-more" target="_top">Register Interest</a></div>"
How can I extract data-url value using regex? I tried
/data-url=".*"$/
but no luck.
Blancer.com Tutorials and projects
Freelance Projects, Design and Programming Tutorials
I’ve this string
"<div><a data-url="https://www.google.com/something/something-more" target="_top">Register Interest</a></div>"
How can I extract data-url value using regex? I tried
/data-url=".*"$/
but no luck.