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.
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.
Look at QString::mid(int start, int length)
in the documentation.