Search found 4 matches

by zqzproject
Mon Nov 14, 2005 7:23 pm
Forum: General XML Questions
Topic: xpath: implementing search
Replies: 1
Views: 6246

sory, sorted! simply apply the string to a contains function will do!
by zqzproject
Mon Nov 14, 2005 7:00 pm
Forum: General XML Questions
Topic: xpath: implementing search
Replies: 1
Views: 6246

xpath: implementing search

hi, in my java code, i have the following string as asearch string so as to look up for some particular nodes in an xml file: xpathselect="//contact[child::"+ keywords + "/child::text()='" + keywordsvalue + "'"; however that selects the element with EXACTLY THE SAME val...
by zqzproject
Mon Nov 14, 2005 1:30 am
Forum: General XML Questions
Topic: xpath select nodes which satisfying certain criteria
Replies: 2
Views: 8213

thanks

thanks! now it works
by zqzproject
Wed Nov 09, 2005 4:59 pm
Forum: General XML Questions
Topic: xpath select nodes which satisfying certain criteria
Replies: 2
Views: 8213

xpath select nodes which satisfying certain criteria

hi, i am writing a java program which process an xml file. and i need a search function, which basically build up xpath. the xml looks: ++++++++++++ <contactlist> <contact> <name>abc</name> <email>abc@email.com</age> </contact> <contact> <name>bcd</name> <email>bcd@email.com</age> </contact> </conta...