Le Sat, 19 Oct 2013 16:06:33 +0200, Benoît Minisini  
<gam...@users.sourceforge.net> a écrit:

> Le 19/10/2013 15:56, Adrien Prokopowicz a écrit :
>> I just added the new static method XMLNode.Deserialize() in revision  
>> #5906
>> for this purpose. For example,
>>
>> Print XMLNode.Deserialize("Select * From mytable Where id &lt; 10")
>>
>> Will print : Select * From mytable Where id < 10
>>
>> Caveat : If you use the FromText() method, you don't actually need to  
>> put
>> your text in any element. Text nodes are nodes too. :)
>>
>> Just be careful not to give an empty string, otherwise FromText() will
>> give you back an empty array, and accessing myNoddies[0] will raise an
>> "Out of bounds" error !
>>
>> Fabien : the "short way" of doing this would actually be :
>>
>> Print XMLElement.FromText("text")[0].TextContent (again, while ensuring
>> that the given text is not empty).
>> FromText() returns an array of nodes. :)
>>
>>
>> Regards,
>>
>
> Shouldn't you use "Contents" instead of "Content". My dictionnary tells
> me that both are correct, but I have always seen the plural form.
>

I have seen both, but the singular form seems to be used too (like in the  
Content-Type HTTP header). This is also the form used in the DOM  
specification (see  
http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core.html#Node3-textContent
  
), so that's why I used "Content".

-- 
Adrien Prokopowicz

------------------------------------------------------------------------------
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register >
http://pubads.g.doubleclick.net/gampad/clk?id=60135031&iu=/4140/ostg.clktrk
_______________________________________________
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user

Reply via email to