Search notes:

R function: deparse

expr     <- expression(2 * 5);
deparsed <- deparse(expr);

str(deparsed);
#
# chr "expression(2 * 5)"
Github repository about-R, path: /functions/deparse/str.R

See also

The R function parse()
Index to (some) R functions

Index