I am new to Scala and trying to understand the capability of Scala with regards to xml processing using xpaths.
Going though Simple Xpath query in scala it appears that if I try to use an xpath to extract value from an xml like - elem \\ "/BCXYZ/abc/def" - using Scala, it wont work.
I can though use something like elem \\ "BCXYZ" \ "abc" \ "def" where elem is a scala.xml.Elem object (representing the xml from which I want to extract the xpath value).
Can someone confirm please.