Learn R Programming

XML (version 0.7-1)

asXMLNode: Converts non-XML node objects to XMLTextNode objects

Description

This function is used to convert S objects that are not already XMLNode objects into objects of that class. Specifically, it treats the object as a string and creates an XMLTextNode object.

Usage

asXMLNode(x)

Arguments

x
the object to be converted to an XMLNode object. This is typically alread an object that inherits from XMLNode or a string.

Value

    References

    http://www.w3.org/XML, http://www.jclark.com/xml, http://www.omegahat.org

    See Also

    xmlNode xmlTextNode

    Examples

    Run this code
    # creates an XMLTextNode.
     asXMLNode("a text node")
    
       # unaltered.
     asXMLNode(xmlNode("p"))

    Run the code above in your browser using DataLab