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:
... &
If you just need to get /post/view/664654, you can use grep command, e.g.
/post/view/664654
grep
grep -o '/post/view/[^"]\+' *.html
For parsing more complex HTML, you can use HTML-XML-utils or pup.