Using the javascript replace method, I want to find this string:
<span class="memberX"><span class="member19">text</span></span> <---X is any number
final output should be:
<span class="member19">text</span>
Essentially I want to remove the outer span which can have a class of memberX, where X is any number.