odfTranslate {odfWeave}R Documentation

Translation of text to XML

Description

odfTranslate converts some XML modified characters (such as &gt) to R code (>). This function also tries to mistake proof the code by anticipating characters that might be in UTF-8 encoding to R compliant characters (e.g. OpenOffice may convert some characters. For example, " will become a UTF-8 character, which R will choke on).

Usage

odfTranslate(x, toR = TRUE)

Arguments

x a character vector
toR a logical. If TRUE, the text is translated from XML to R. The opposite is done if FALSE.

Value

a character vector

Author(s)

Max Kuhn and Nathan Coulter

Examples


y <- "\Sexpr{paste(letters[1:5], <text:s text:c=\"2\"/>collapse = &quot;,&quot;)}"

odfTranslate(y)

[Package odfWeave version 0.7.9 Index]