Tagged Questions
1
vote
1answer
160 views
Scala, combining filters on XML node
XML sample:
<structure-node (n)>
<node-data (1)>
<feature-list (n)>
<feature (n)>
<value (1)>123</value>
...
1
vote
1answer
244 views
Scala NodeSeq reduce/foldLeft with newlines
Assume this is pretty easy but having a hard time printing out NodeSeq of html tags with newlines (so when I view source in web browser, I can scan top-to-bottom)
As is, the NodeSeq is printed as one ...
1
vote
2answers
537 views
XML node vs. attribute in Scala?
Remark: please consider XPath syntax dead here, thank you.
I have xml node (HTML actually), and I would like to get an attribute of it.
In C# (HTMLAgilityPack) I could get attribute object by name. ...