Hi All,
I am new to QT and am trying to insert double quotes inside QString, but am not able to do so. Below is the sample code am using.

QString var;
var = "adb shell \"echo some paths here\"";

when I print "var" am getting
"adb shell \"echo some paths here\"" (it is displaying including the escape character '\')

Anybody please help me, how to get
"adb shell "echo some paths here"".

Thank you.