xml_grep exclude element that contains an element












0















I'm trying to remove all elements from an XML file that contain a certain other element. Here's a very simplified version of what I'm trying to do. Suppose I have the XML file



<RootEl>
<A>
<B/>
</A>
<A>
<C/>
</A>
</RootEl>


If I wanted to keep all and only the A's that DO contain B's, I could use this command line:



xml_grep -root A -cond B < TheFile.xml


But if I want to do the reverse--keep only the A's that do NOT contain B's, I'm at a loss. A command similar to the above, namely



xml_grep -root A -exclude B < TheFile.xml


gives me



<RootEl>
<A>

</A>
<A>
<C/>
</A>
</RootEl>


whereas what I want is



<RootEl>
<A>
<C/>
</A>
</RootEl>


I get the same undesired answer if I use



xml_grep -root A -exclude A/B < TheFile.xml


or



xml_grep -exclude A/B < TheFile.xml


I could figure out how to do this in Python, and I suppose it's possible in xslt. But I was hoping for a way to do this in xml_grep.



BTW, I'm sure someone will ask why I don't just tell it I want the As that contain Cs. The problem is that there are 20 or so things an A can contain besides B or C, so I'd have to specify an A that contains a C or a D or...or a Z. Which is a whole lot more work than specifying the one kind of A I don't want.



The question Delete XML node containing certain element is asking basically the same question, but there are no answers there using xml_grep. I'm hoping someone can suggest such an answer, since xml_grep seems reasonably popular and built for purposes like this...almost.










share|improve this question



























    0















    I'm trying to remove all elements from an XML file that contain a certain other element. Here's a very simplified version of what I'm trying to do. Suppose I have the XML file



    <RootEl>
    <A>
    <B/>
    </A>
    <A>
    <C/>
    </A>
    </RootEl>


    If I wanted to keep all and only the A's that DO contain B's, I could use this command line:



    xml_grep -root A -cond B < TheFile.xml


    But if I want to do the reverse--keep only the A's that do NOT contain B's, I'm at a loss. A command similar to the above, namely



    xml_grep -root A -exclude B < TheFile.xml


    gives me



    <RootEl>
    <A>

    </A>
    <A>
    <C/>
    </A>
    </RootEl>


    whereas what I want is



    <RootEl>
    <A>
    <C/>
    </A>
    </RootEl>


    I get the same undesired answer if I use



    xml_grep -root A -exclude A/B < TheFile.xml


    or



    xml_grep -exclude A/B < TheFile.xml


    I could figure out how to do this in Python, and I suppose it's possible in xslt. But I was hoping for a way to do this in xml_grep.



    BTW, I'm sure someone will ask why I don't just tell it I want the As that contain Cs. The problem is that there are 20 or so things an A can contain besides B or C, so I'd have to specify an A that contains a C or a D or...or a Z. Which is a whole lot more work than specifying the one kind of A I don't want.



    The question Delete XML node containing certain element is asking basically the same question, but there are no answers there using xml_grep. I'm hoping someone can suggest such an answer, since xml_grep seems reasonably popular and built for purposes like this...almost.










    share|improve this question

























      0












      0








      0








      I'm trying to remove all elements from an XML file that contain a certain other element. Here's a very simplified version of what I'm trying to do. Suppose I have the XML file



      <RootEl>
      <A>
      <B/>
      </A>
      <A>
      <C/>
      </A>
      </RootEl>


      If I wanted to keep all and only the A's that DO contain B's, I could use this command line:



      xml_grep -root A -cond B < TheFile.xml


      But if I want to do the reverse--keep only the A's that do NOT contain B's, I'm at a loss. A command similar to the above, namely



      xml_grep -root A -exclude B < TheFile.xml


      gives me



      <RootEl>
      <A>

      </A>
      <A>
      <C/>
      </A>
      </RootEl>


      whereas what I want is



      <RootEl>
      <A>
      <C/>
      </A>
      </RootEl>


      I get the same undesired answer if I use



      xml_grep -root A -exclude A/B < TheFile.xml


      or



      xml_grep -exclude A/B < TheFile.xml


      I could figure out how to do this in Python, and I suppose it's possible in xslt. But I was hoping for a way to do this in xml_grep.



      BTW, I'm sure someone will ask why I don't just tell it I want the As that contain Cs. The problem is that there are 20 or so things an A can contain besides B or C, so I'd have to specify an A that contains a C or a D or...or a Z. Which is a whole lot more work than specifying the one kind of A I don't want.



      The question Delete XML node containing certain element is asking basically the same question, but there are no answers there using xml_grep. I'm hoping someone can suggest such an answer, since xml_grep seems reasonably popular and built for purposes like this...almost.










      share|improve this question














      I'm trying to remove all elements from an XML file that contain a certain other element. Here's a very simplified version of what I'm trying to do. Suppose I have the XML file



      <RootEl>
      <A>
      <B/>
      </A>
      <A>
      <C/>
      </A>
      </RootEl>


      If I wanted to keep all and only the A's that DO contain B's, I could use this command line:



      xml_grep -root A -cond B < TheFile.xml


      But if I want to do the reverse--keep only the A's that do NOT contain B's, I'm at a loss. A command similar to the above, namely



      xml_grep -root A -exclude B < TheFile.xml


      gives me



      <RootEl>
      <A>

      </A>
      <A>
      <C/>
      </A>
      </RootEl>


      whereas what I want is



      <RootEl>
      <A>
      <C/>
      </A>
      </RootEl>


      I get the same undesired answer if I use



      xml_grep -root A -exclude A/B < TheFile.xml


      or



      xml_grep -exclude A/B < TheFile.xml


      I could figure out how to do this in Python, and I suppose it's possible in xslt. But I was hoping for a way to do this in xml_grep.



      BTW, I'm sure someone will ask why I don't just tell it I want the As that contain Cs. The problem is that there are 20 or so things an A can contain besides B or C, so I'd have to specify an A that contains a C or a D or...or a Z. Which is a whole lot more work than specifying the one kind of A I don't want.



      The question Delete XML node containing certain element is asking basically the same question, but there are no answers there using xml_grep. I'm hoping someone can suggest such an answer, since xml_grep seems reasonably popular and built for purposes like this...almost.







      xml






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked 48 mins ago









      Mike MaxwellMike Maxwell

      111




      111






















          0






          active

          oldest

          votes











          Your Answer








          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "106"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f495214%2fxml-grep-exclude-element-that-contains-an-element%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Unix & Linux Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f495214%2fxml-grep-exclude-element-that-contains-an-element%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          サソリ

          広島県道265号伴広島線

          Setup Asymptote in Texstudio