I have a string with double quotes:
For e.g string1<-"URL,username,password"
Now there is one function call:
function(string1).....
function works if call function(URl,Username,password)
like this.
But it does not work if I call function(string1)
like this ,because string1 contains double quotes.
How can i solve this problem?