tags:

views:

40

answers:

1

Hello. I have a QString. I need to create a copy of this QString. In Delphi this function copy

function Copy ( Source : string; StartChar, Count : Integer ) : string;

I need the same in Qt.

Thank you.

+6  A: 

Look at QString::mid(int start, int length) in the documentation.

gregseth