I was wandering...I've got a routine that gives me as a result this kind of string:
"text1","text2"
the quotation marks and the comma are included in the string. Now, isn't there a easy and direct way of extracting the text1 and text2 to 2 separate variables?
well i would use the split command for this situation with the , as a delimiter
this will return a array with the values
then with replace you can replace the " marks with nothing