If there are any then how deeply is xml integrated into language? What primitives are used to manipulate xml document?
PS. I'm not interested in declarative languages such as SQL, XPath, XSLT :)
|
2
|
If there are any then how deeply is xml integrated into language? What primitives are used to manipulate xml document? PS. I'm not interested in declarative languages such as SQL, XPath, XSLT :)
|
|||
|
|
|
|
Flash's ActionScript 3.0 and JavaScript (ECMAScript languages) are also integrated with XML by E4X.
Here are Adobe's docs for working with XML in AS3.0. |
|||
|
|
|
Flex and Action Script. |
||
|
|
|
|
XQuery ? From the linked article:
It supports for-loops, whiles, let, ordering etc. |
||
|
|
I'd go with groovy since it integrates best with Java. |
||
|
|
|
|
javascript,see here |
||
|
|
|
|
Groovy and Scala have XML literal support, though I think this is generally a really stupid idea. |
||
|
|
|
|
VB.NET 9.0 has XML literals which seems like what you're looking for. This example taken from Imran Shaik blog
|
||||
|
|
|
Depends how you mean by deeply integrated? .net comes with an XML namespace and various classes for dealing with XML documents... |
||
|
|
|
Powershell has some niceties in dealing with XML, mainly that a node gets dynamic properties representing its sub-nodes. So given the XML
an XML object created from this has a "foo" property and the object returned by that has a "bar" property.
> $x=[xml]"<foo><bar moo='meh'/><bar meow='bleh'/></foo>"
> $x.foo
bar
---
{bar, bar}
> $x.foo.bar[0]
moo
---
meh
> $x.foo.bar[1]
meow
----
bleh
Very handy at times. |
||||||||
|