This could be really trivial, but I cannot find the right function to get the name of an object as a character.

Assume we have a function like:

getName <- function(obj)

Now if we call the function like:

getName(blabla)

and 'blabla' is not a defined object, I want getName to return "blabla". In other word, if

paste("blabla")

returns

"blabla"

I want to define a paste function which returns the same character by:

paste(blabla)

______________________________________________
R-help@stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html

Reply via email to