-2

Small regex question. I have string in the following format:
<b class="ui-tabel-cell-label>Titel</b>TheString that i want

I am creating a mobile website using jquerymobile in which there is a tabel. I get this string when i try to get extract the cell value from this table. Unfortunatlly i didnt find a way to only get the Value of the cell instead i get the "th" element from the tabel aswell. So i thought maybe i can filter it out by using a regular expression.

Could someone provide a regex which filters out the String part from <"b"><"/b"> and everything that is inside and inbetween so i only get the "The String what i want" part.

TheWandererr
  • 514
  • 1
  • 8
  • 34

1 Answers1

1

If i understand your Question right, the suitable Regex String would be:

(?<=Titel<\/b>)(.*$)

You can check it here out.