Hello,
Thanks in advance. I have the following input...
<td class="inningsDetails"><b>Did not bat</b> <span><a href="/ci/content/player/44716.html" target="" title="view the player profile for Allan Donald" class="playerName">AA Donald</a></span>,
<span><a href="/ci/content/player/44742.html" target="" title="view the player profile for Michael Bosch" class="playerName">MP Bosch</a></span>,
<span><a href="/ci/content/player/44803.html" target="" title="view the player profile for Jonathan Winters" class="playerName">JM Winters</a></span>
</td>
I would like to grep for "Did not bat", identify the <td> tag and join the lines until </td>. Output should be...
<td class="inningsDetails"><b>Did not bat</b> <span><a href="/ci/content/player/44716.html" target="" title="view the player profile for Allan Donald" class="playerName">AA Donald</a></span>, <span><a href="/ci/content/player/44742.html" target="" title="view the player profile for Michael Bosch" class="playerName">MP Bosch</a></span>, <span><a href="/ci/content/player/44803.html" target="" title="view the player profile for Jonathan Winters" class="playerName">JM Winters</a></span>
</td>
Thanks again,
Arun
Thanks in advance. I have the following input...
<td class="inningsDetails"><b>Did not bat</b> <span><a href="/ci/content/player/44716.html" target="" title="view the player profile for Allan Donald" class="playerName">AA Donald</a></span>,
<span><a href="/ci/content/player/44742.html" target="" title="view the player profile for Michael Bosch" class="playerName">MP Bosch</a></span>,
<span><a href="/ci/content/player/44803.html" target="" title="view the player profile for Jonathan Winters" class="playerName">JM Winters</a></span>
</td>
I would like to grep for "Did not bat", identify the <td> tag and join the lines until </td>. Output should be...
<td class="inningsDetails"><b>Did not bat</b> <span><a href="/ci/content/player/44716.html" target="" title="view the player profile for Allan Donald" class="playerName">AA Donald</a></span>, <span><a href="/ci/content/player/44742.html" target="" title="view the player profile for Michael Bosch" class="playerName">MP Bosch</a></span>, <span><a href="/ci/content/player/44803.html" target="" title="view the player profile for Jonathan Winters" class="playerName">JM Winters</a></span>
</td>
Thanks again,
Arun