I have the next html file
<html>
....
<table class="newstable"> ---> from here
....
</table> ---> to here
...
</html>
How can i get only the text from the line <table class="newstable"> to the next </table> to another file, with the use of awk or other filters?
As a flag from start moving lines is the word “newstable” and stop moving lines the next </table> in the file.
Thanks
<html>
....
<table class="newstable"> ---> from here
....
</table> ---> to here
...
</html>
How can i get only the text from the line <table class="newstable"> to the next </table> to another file, with the use of awk or other filters?
As a flag from start moving lines is the word “newstable” and stop moving lines the next </table> in the file.
Thanks