Hello, I was wondering what could be the fastest and the easiest way to grab text that is between tags in string.
For example i have this string: Lorem ipsum <a>dolor sit amet</a>, <b>consectetur</b> adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
And i need to find text that is between tags <a> </a>
and <b> </b>
.
Thank you.