i am trying to extract the sentence:
str="<a href=\"https://blabla.com/truck\">truck</a> A wheeled, powered motor vehicle used for transportation."
result:
truck A wheeled, powered motor vehicle used to tranportation.
cant find a way to extract the sentence normaly using regex, everytime something is missing.
edit: the structure of the desired result is the word which comes before the "</a>
" sign, and the rest of the sentence right after (the word is random and the sentence as well).