CStringT::Left
从此 CStringT 对象提取最左侧的 nCount 字符并返回反斜提取的子字符串的副本。
CStringT Left(
int nCount
) const;
参数
- nCount
提取的字符数从此 CStringT 对象。
返回值
包含字符指定范围内的副本 CStringT 对象。 请注意返回的 CStringT 对象可能为null。
备注
如果 nCount 超过字符串长度,则整个字符串中提取。 Left 类似于基本 Left 功能。
为多字节字符集(mbcs),nCount 引用每8位字符;即在一个多字节字符的前导和尾字节计为两个字符。
示例
// typedef CStringT<TCHAR, StrTraitATL<TCHAR, ChTraitsCRT<TCHAR>>> CAtlString;
CAtlString s(_T("abcdef"));
ASSERT(s.Left(2) == _T("ab"));
要求
Header: cstringt.h