Re: [racket-users] html->xexp and parsing Stack Overflow

2016-03-08 Thread Neil Van Dyke
phil jones wrote on 03/08/2016 06:52 PM: So the best way to query something created from your html->xexp function would be to use http://docs.racket-lang.org/sxml/sxpath.html rather than xml/path? Yes, I usually use a mix of SXPath and `sxml-match`. http://www.neilvandyke.org/racket/sxml-intr

Re: [racket-users] html->xexp and parsing Stack Overflow

2016-03-08 Thread phil jones
Yes. That certainly seems helpful, thanks. So the best way to query something created from your html->xexp function would be to use http://docs.racket-lang.org/sxml/sxpath.html rather than xml/path? many thanks again. regards Phil On 8 March 2016 at 20:42, Neil Van Dyke wrote: > Phil, can yo

Re: [racket-users] html->xexp and parsing Stack Overflow

2016-03-08 Thread Neil Van Dyke
Phil, can you let me know whether this new document clears up everything? http://www.neilvandyke.org/racket/sxml-intro/ Neil V. -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from this group and stop receiving emails from it,

[racket-users] html->xexp and parsing Stack Overflow

2016-03-08 Thread phil jones
Hi everyone, I'm trying to write a little program to extract some data from a web-page. But when I hit Stack Overflow with it, I'm getting some strange errors (I documented them here : http://stackoverflow.com/questions/35879617/some-xexpressions-in-racket-dont-pass-xexpr ) Now I stumbled acr