当前位置: 代码迷 >> QT开发 >> 如何读取QString 第i个位置的字符
  详细解决方案

如何读取QString 第i个位置的字符

热度:229   发布时间:2016-04-25 03:05:08.0
怎么读取QString 第i个位置的字符?
怎么读取QString 第i个位置的字符?
------解决思路----------------------
sorry,刚才看错了,以为是第1个字符。

获取第i个字符的方法如下:

const QChar QString::at(int position) const
Returns the character at the given index position in the string.

The position must be a valid index position in the string (i.e., 0 <= position < size()).

See also operator[]().
  相关解决方案