PDA

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



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

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

How ?

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

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