Script and Comments
Script1 [ 1] /</{
[ 2] :loop
[ 3] s/<[^<]*>//g
[ 4] /</{
[ 5] N
[ 6] b loop
[ 7] }
[ 8] }
| |
| Raw Input
| <html><body>
<table
border=2><tr><td valign=top
align=right>1.</td>
<td>Line 1 Column 2</
td></
tr>
<tr><td valign=top
align=right>2.</td>
<td>Line 2 Column 2</
td></
tr></table>
</body></html>
|
|
| Desired Output
| 1.
Line 1 Column 2
2.
Line 2 Column 2
|
|