Scilab Home page | Wiki | Bug tracker | Forge | Mailing list archives | ATOMS | File exchange
Please login or create an account
Change language to: Français - Português - Русский - 日本語
Scilab Help >> XML Management > xmlGetNsByHref

xmlGetNsByHref

Get a namespace by its href

Syntax

ns = xmlGetNsByHref(elem, href)

Arguments

elem

a mlist typed XMLElem

href

a string giving the href

ns

a mlist typed XMLNs

Description

Search a namespace with the given href on the element or on its ancestors.

Examples

s = "<root><a xmlns:scilab=""http://www.scilab.org"">"+..
    "<b>Hello </b><scilab:c>World</scilab:c></a></root>"
doc = xmlReadStr(s)
c = doc.root.children(1).children(2);
xmlGetNsByHref(c, "http://www.scilab.org")

xmlDelete(doc);

See Also

History

VersionDescription
5.4.0 XML module introduced.
Scilab Enterprises
Copyright (c) 2011-2015 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Wed Jun 15 08:27:38 CEST 2016