> p="v="
> q=5
> eval(parse(text=paste(p,q,sep="")))
>
> ... then the value of v is 5, OK.
>
> but I can't with strings, for example:
>
> p="v="
> q="hello friend"
> eval(parse(text=paste(p,q,sep="")))
>
> ...... error
Try:
eval(parse(text=paste(p,"'",q,"'",sep="")))
Regards,
Richie.
Mathematical Sciences Unit
HSL
------------------------------------------------------------------------
ATTENTION:
This message contains privileged and confidential inform...{{dropped:20}}
______________________________________________
[email protected] mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.