Windows Batch / Parse Data From Html Web Page
Is it possible to parse data from web html page using windows batch? let's say I have a web page: www.domain.com/data/page/1 Page source html: ...
Solution 2:
If you just need to get /post/view/664654
, you can use grep
command, e.g.
grep -o '/post/view/[^"]\+' *.html
For parsing more complex HTML, you can use HTML-XML-utils or pup
.
Post a Comment for "Windows Batch / Parse Data From Html Web Page"