PDA

View Full Version : how to get a part of the string


probine
4th December 2006, 13:44
I have a QString containing "Hello =new world".

I want to get only "new" from the string.

How ?

wysota
4th December 2006, 13:49
Use QString::mid().

jacek
4th December 2006, 15:37
or QRegExp.