I need the exact same output from this line of code,
> paste('"a"','"b"')
[1] "\"a\" \"b\""
but I need "b" to be a variable which changes in each iteration, so suppose I have x <-"b", paste('"a"',x) or any other ways I tried failed to give me the output I wanted, which is
> paste('"a"','"b"')
[1] "\"a\" \"b\""
Thanks in advance!
OM