Reddit mentions: The best xml programming books

We found 1 Reddit comment discussing the best xml programming books. We ran sentiment analysis on each of these comments to determine how redditors feel about different products. We found 1 product and ranked them based on the amount of positive reactions they received. Here are the top 20.

1. A Student's Guide to XSLT

    Features:
  • John Wiley & Sons
A Student's Guide to XSLT
Specs:
Height11 Inches
Length8.5 Inches
Number of items1
Width0.2 Inches
▼ Read Reddit mentions

🎓 Reddit experts on xml programming books

The comments and opinions expressed on this page are written exclusively by redditors. To provide you with the most relevant data, we sourced opinions from the most knowledgeable Reddit users based the total number of upvotes and downvotes received across comments on subreddits where xml programming books are discussed. For your reference and for the sake of transparency, here are the specialists whose opinions mattered the most in our ranking.
Total score: 2
Number of comments: 1
Relevant subreddits: 1

idea-bulb Interested in what Redditors like? Check out our Shuffle feature

Shuffle: random products popular on Reddit

Top Reddit comments about XML Programming:

u/snakesarecool · 2 pointsr/learnpython

I have been learning xpath this past year for webscraping. I suggest that you look at learning them simultaneously. Basically, you need to know XML structure and terminology really well. Backup and learn that first, and brush up on your HTML while you're in there. Once you know the words to describe the things in the XML tree, then you can lookup how to extract them using xpath.

http://www.amazon.com/Students-Guide-XSLT-Andrew-Whitmore/dp/1481951092 is XSLT but reasonably straight forward and short, quick to the point about XPath and manipulation of them.

http://www.w3schools.com/xpath/ is a really good reference as well. I know you mentioned looking at it, but open up a document and start practicing what it is teaching you on that document.

I use the Oxygen XML editor to preview my xpaths, but there are some online things you can use as well.

In all honesty, I've been doing stupid projects as methods of teaching myself xpath. This is the best way to learn, I think. Practice is key.

This all said, I still have to use regular expressions with my scraping. I extract everything I can from the HTML via xpath, but often times that element content will have multiple data values that can only be extracted via brute force or regular expressions.