Xpath multiple attributes from different nodes -
what's wrong xpath line added below:
/holiday[starts-with(@code,'a')/holidaytype[1]/duration[@period=(15)]
i'm trying filter holiday code , number of day(period).
you missing /
, ]
. look:
/holiday[starts-with(@code,'a')/holidaytype[1]/duration[@period=(15)] ^ ^ ^-- missing here ^-- , "]" here
in first case, can //
or //*/
. so, try:
//holiday[starts-with(@code,'a')]/holidaytype[1]/duration[@period=(15)]
Comments
Post a Comment