LINUX.ORG.RU

Ответ на: комментарий от anonymous

QString QString::mid ( uint index, uint len = 0xffffffff ) const

Returns a string that contains the len characters of this string, starting at position index.
Returns a null string if the string is empty or index is out of range. Returns the whole string from index if index + len exceeds the length of the string.
QString s( "Five pineapples" );
QString t = s.mid( 5, 4 ); // t == "pine"

See also left() and right().

Sveta_F
()
Ответ на: комментарий от Sveta_F

Вот Sveta_F уважаю - всегда помогает! Спасибо.

anonymous
()
Вы не можете добавлять комментарии в эту тему. Тема перемещена в архив.