x3p_modify_xml {x3ptools} | R Documentation |
Modify xml elements meta information in x3p object
Description
Identify xml fields in the meta file of an x3p object by name and modify content if uniquely described.
Usage
x3p_modify_xml(x3p, element, value)
Arguments
x3p |
x3p object |
element |
character or integer. In case of character, name of xml field in the meta file. Note that element can contain regular expressions, e.g. |
value |
character. Value to be given to the xml field in the meta file. |
Value
x3p object with changed meta information
Examples
logo <- x3p_read(system.file("csafe-logo.x3p", package="x3ptools"))
x3p_show_xml(logo, "creator")
x3p_modify_xml(logo, "creator", "I did that")
x3p_show_xml(logo, 20)
x3p_modify_xml(logo, 20, "I did that, too")
[Package x3ptools version 0.0.4 Index]