Get elements with no textual values in XML in elixirIn Java, how do I parse XML as a String instead of a file?XPath: How to select elements based on their value?What does <![CDATA[]]> in XML mean?How to read XML using XPath in JavaXPath - Selecting elements that equal a valueHow do you parse and process HTML/XML in PHP?XPath contains(text(),'some string') doesn't work when used with node with more than one Text subnodeXPath query to get nth instance of an elementExtract value of attribute node via XPathXPath with LXML Element
Is my test coverage up to snuff?
How to describe a building set which is like LEGO without using the "LEGO" word?
Will the volt, ampere, ohm or other electrical units change on May 20th, 2019?
Do people who work at research institutes consider themselves "academics"?
Will consteval functions allow template parameters dependent on function arguments?
Do high-wing aircraft represent more difficult engineering challenges than low-wing aircraft?
Understanding Deutch's Algorithm
Assembly writer vs compiler
Slice a list based on an index and items behind it in python
When did game consoles begin including FPUs?
Using chord iii in a chord progression (major key)
Testing blind license applicants
Would life always name the light from their sun "white"
Why commonly or frequently used fonts sizes are even numbers like 10px, 12px, 16px, 24px, or 32px?
c++ conditional uni-directional iterator
Why when I add jam to my tea it stops producing thin "membrane" on top?
Holding rent money for my friend which amounts to over $10k?
Meaning of "legitimate" in Carl Jung's quote "Neurosis is always a substitute for legitimate suffering."
To whom did Varys write those letters in Game of Thrones S8E5?
Why did the soldiers of the North disobey Jon?
Does addError() work outside of triggers?
Could a space colony 1g from the sun work?
Does the wearer know what items are in which patch in the Robe of Useful items?
What dog breeds survive the apocalypse for generations?
Get elements with no textual values in XML in elixir
In Java, how do I parse XML as a String instead of a file?XPath: How to select elements based on their value?What does <![CDATA[]]> in XML mean?How to read XML using XPath in JavaXPath - Selecting elements that equal a valueHow do you parse and process HTML/XML in PHP?XPath contains(text(),'some string') doesn't work when used with node with more than one Text subnodeXPath query to get nth instance of an elementExtract value of attribute node via XPathXPath with LXML Element
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I am trying to parse the following XML doc using SweetXML library.
<A>
<B>23</B>
<B>34</B>
<B></B>
</A>
However when I try to parse the document using: xpath(~x"/A/B/text()"l)
I get the response ['23', '34']
. Is there anyway I can get the list with nil value for the element having no text ? The response that I expect is: ['23', '34', nil]
.
xml xpath elixir
add a comment |
I am trying to parse the following XML doc using SweetXML library.
<A>
<B>23</B>
<B>34</B>
<B></B>
</A>
However when I try to parse the document using: xpath(~x"/A/B/text()"l)
I get the response ['23', '34']
. Is there anyway I can get the list with nil value for the element having no text ? The response that I expect is: ['23', '34', nil]
.
xml xpath elixir
The proper W3C XPath 1.0 answer is NO. You select node-sets in XPath 1.0, then is not posible to select something that it doesn't exist.
– Alejandro
Apr 22 at 22:39
add a comment |
I am trying to parse the following XML doc using SweetXML library.
<A>
<B>23</B>
<B>34</B>
<B></B>
</A>
However when I try to parse the document using: xpath(~x"/A/B/text()"l)
I get the response ['23', '34']
. Is there anyway I can get the list with nil value for the element having no text ? The response that I expect is: ['23', '34', nil]
.
xml xpath elixir
I am trying to parse the following XML doc using SweetXML library.
<A>
<B>23</B>
<B>34</B>
<B></B>
</A>
However when I try to parse the document using: xpath(~x"/A/B/text()"l)
I get the response ['23', '34']
. Is there anyway I can get the list with nil value for the element having no text ? The response that I expect is: ['23', '34', nil]
.
xml xpath elixir
xml xpath elixir
edited Mar 23 at 22:21
Adam Millerchip
3,22811731
3,22811731
asked Mar 23 at 15:18
Mukul ChakravartyMukul Chakravarty
838
838
The proper W3C XPath 1.0 answer is NO. You select node-sets in XPath 1.0, then is not posible to select something that it doesn't exist.
– Alejandro
Apr 22 at 22:39
add a comment |
The proper W3C XPath 1.0 answer is NO. You select node-sets in XPath 1.0, then is not posible to select something that it doesn't exist.
– Alejandro
Apr 22 at 22:39
The proper W3C XPath 1.0 answer is NO. You select node-sets in XPath 1.0, then is not posible to select something that it doesn't exist.
– Alejandro
Apr 22 at 22:39
The proper W3C XPath 1.0 answer is NO. You select node-sets in XPath 1.0, then is not posible to select something that it doesn't exist.
– Alejandro
Apr 22 at 22:39
add a comment |
1 Answer
1
active
oldest
votes
I think you want to use optional mapping:
xpath(xml, ~x"//A/B"l, number: ~x"text()")
|> Enum.map(fn %number: number -> number end)
Output:
['23', '34', nil]
I was able to do it a while ago usingstream_tags(xmldoc, :B) |> Stream.map( fn :B, doc -> doc |> SweetXml.xpath(~x"./text()") end) |> Enum.to_list
. But I think yours is better. Thanks for the solution.
– Mukul Chakravarty
Mar 24 at 13:04
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
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: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55315236%2fget-elements-with-no-textual-values-in-xml-in-elixir%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I think you want to use optional mapping:
xpath(xml, ~x"//A/B"l, number: ~x"text()")
|> Enum.map(fn %number: number -> number end)
Output:
['23', '34', nil]
I was able to do it a while ago usingstream_tags(xmldoc, :B) |> Stream.map( fn :B, doc -> doc |> SweetXml.xpath(~x"./text()") end) |> Enum.to_list
. But I think yours is better. Thanks for the solution.
– Mukul Chakravarty
Mar 24 at 13:04
add a comment |
I think you want to use optional mapping:
xpath(xml, ~x"//A/B"l, number: ~x"text()")
|> Enum.map(fn %number: number -> number end)
Output:
['23', '34', nil]
I was able to do it a while ago usingstream_tags(xmldoc, :B) |> Stream.map( fn :B, doc -> doc |> SweetXml.xpath(~x"./text()") end) |> Enum.to_list
. But I think yours is better. Thanks for the solution.
– Mukul Chakravarty
Mar 24 at 13:04
add a comment |
I think you want to use optional mapping:
xpath(xml, ~x"//A/B"l, number: ~x"text()")
|> Enum.map(fn %number: number -> number end)
Output:
['23', '34', nil]
I think you want to use optional mapping:
xpath(xml, ~x"//A/B"l, number: ~x"text()")
|> Enum.map(fn %number: number -> number end)
Output:
['23', '34', nil]
answered Mar 23 at 22:14
Adam MillerchipAdam Millerchip
3,22811731
3,22811731
I was able to do it a while ago usingstream_tags(xmldoc, :B) |> Stream.map( fn :B, doc -> doc |> SweetXml.xpath(~x"./text()") end) |> Enum.to_list
. But I think yours is better. Thanks for the solution.
– Mukul Chakravarty
Mar 24 at 13:04
add a comment |
I was able to do it a while ago usingstream_tags(xmldoc, :B) |> Stream.map( fn :B, doc -> doc |> SweetXml.xpath(~x"./text()") end) |> Enum.to_list
. But I think yours is better. Thanks for the solution.
– Mukul Chakravarty
Mar 24 at 13:04
I was able to do it a while ago using
stream_tags(xmldoc, :B) |> Stream.map( fn :B, doc -> doc |> SweetXml.xpath(~x"./text()") end) |> Enum.to_list
. But I think yours is better. Thanks for the solution.– Mukul Chakravarty
Mar 24 at 13:04
I was able to do it a while ago using
stream_tags(xmldoc, :B) |> Stream.map( fn :B, doc -> doc |> SweetXml.xpath(~x"./text()") end) |> Enum.to_list
. But I think yours is better. Thanks for the solution.– Mukul Chakravarty
Mar 24 at 13:04
add a comment |
Thanks for contributing an answer to Stack Overflow!
- 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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55315236%2fget-elements-with-no-textual-values-in-xml-in-elixir%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
The proper W3C XPath 1.0 answer is NO. You select node-sets in XPath 1.0, then is not posible to select something that it doesn't exist.
– Alejandro
Apr 22 at 22:39