Pergunta

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.

Foi útil?

Solução

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.
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top