Question

void show(QString *s){
   //Here I want to show the value of the QString.
}

How can I do that??

I'd be glad if you could help me.

Was it helpful?

Solution

Not sure exactly what you're asking - see my comments.

Maybe this will help?

Check out toAscii(), toLatin1(), toUtf8()

const char* data = s->toAscii();  // if you want ASCII encoding
data = s->toUtf8();  // if you want UTF-8 encoding

// etc.
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top