Jump to content

Evgeniy.co.il

Members
  • Posts

    5
  • Joined

  • Last visited

Posts posted by Evgeniy.co.il

  1. i have Xml that looks something like this: How can i filtering this xml for cb="1" ? I know only xpath & DataSet are ways for filtering this xml:
    <root>
    <node id="1">
    <node cb="0"></node>
    <node cb="0"></node>
    </node>
    <node id="2">
    <node id="21" cb="0"></node>
    <node id="22" cb="1"></node>
    </node>
    </root>
    What the most efficient way to make it like (filter by cb=1):
    enter code here
    <root>
    <node id="2">
    <node id="22" cb="1"></node>
    </node>
    </root>
    With regards, Evgeniy Vinnikov

     

×
×
  • Create New...