I have this string and other ones like it:
<a href='/webapps/alrn-atomiclearning-bb_bb60/atomic/view.jsp?courseId=@X@course.pk_string@X@&contentId=@X@content.pk_string@X@&tt=Using+the+course+calendar&st=Blackboard+Learn%E2%84%A2+9.1+Instructor+-+Additional+Features+Training&d=00:02:09&tid=84425&sid=2389'><img src='/webapps/alrn-atomiclearning-bb_bb60/images/icon_play_UnlockedTutorial.png' alt='play icon'> Using the course calendar</a><br/>Duration: (00:02:09)
I'm trying to come up with a regex to capture everything EXCEPT the coherent labels that begin after
and end just before the </a><br/>
So for example, I would capture everything and then delete it and end up only having:
Using the course calendar
as still there. I've tried multiple variations in Rubular but can only get up to the . Trying to use the [^a-zA-Z|^\s]*<\/a>.*
to skip every word char and white space up to the <\a> does not work.
Thanks.