priya
priya

Reputation: 858

using xpath with Expat xml parser

I have used Expat xml parser to parse xml. I need to know whether Expat supports the functionality of xpath i.e if i want to use xpath to modify xml at runtime and to pass the modified xml as a input to an api ( here the api name is mentioned in the xml that was parsed by the exppat parser). here i want to parse the xpath command through expat so please suggest if expat supports this.I am using c language.

Thanks priya

Upvotes: 1

Views: 1277

Answers (1)

sirgeorge
sirgeorge

Reputation: 6541

As far as I know, expat only parses XML, which means it does not transform it in any way, so the short answer to your question is NO.

Upvotes: 1

Related Questions