以下成员源于类 QUtf8StringView 被弃用。 提供它们是为使旧源代码能继续工作。强烈建议不要在新代码中使用它们。
(deprecated)
QUtf8StringView
|
left (qsizetype n ) const |
(deprecated)
QUtf8StringView
|
mid (qsizetype pos , qsizetype n = -1) const |
(deprecated)
QUtf8StringView
|
right (qsizetype n ) const |
This function is deprecated. We strongly advise against using it in new code.
使用 first () 取而代之在新代码中。
返回子字符串长度 n starting at position 0 in this object.
返回整个字符串若 n >= size (),或小于 0。
另请参阅 first (), last (), sliced (), chopped (), chop (),和 truncate ().
This function is deprecated. We strongly advise against using it in new code.
返回子字符串长度 n 起始于位置 pos 在此对象。
使用 sliced () 取而代之在新代码中。
Returns an empty string view if n exceeds the length of the string. If there are less than n code points available in the string starting at pos ,或者若 n is negative (default), the function returns all code points that are available from pos .
另请参阅 first (), last (), sliced (), chopped (), chop (),和 truncate ().
This function is deprecated. We strongly advise against using it in new code.
使用 last () 取而代之在新代码中。
返回子字符串长度 n 起始于位置 size () - n 在此对象。
返回整个字符串若 n >= size (),或小于 0。
另请参阅 first (), last (), sliced (), chopped (), chop (),和 truncate ().