CString类常用方法----Left(),Mid(),Right()
Posted 毛毛虫的爹
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CString类常用方法----Left(),Mid(),Right()相关的知识,希望对你有一定的参考价值。
CStringLeft(intnCount)const; //从左边1开始获取前 nCount个字符
CStringMid(intnFirst)const; //从左边第 nCount+1个字符开始,获取后面所有的字符
CStringMid(intnFirst,intnCount)const; //从左边第 nFirst+1 个字符开始,获取后面nCount个字符
CStringRight(intnCount)const; //从右边1开始获取从右向左前 nCount个字符
voidMakeUpper(); //这个函数可以将CString字符转化为一个大写的字符串。
注:
在函数后面加 const 的意思是:
如果一个类声明了一个常量对象,这个对象只能使用后边带 const 这个的方法.
例:
CString a,b;
a = “123456789”;
b =a.Left(4); //值为:1234
b =a.Mid(3); //值为:456789
b = a.Mid(2, 4); //值为:3456
b = a.Right(4); //值为:6789
The following example demonstrates the useof CString::MakeUpper.
//example for CString::MakeUpper CStrings( “abc” ); s.MakeUpper(); ASSERT(s == “ABC” );
在一个较大的字符串中查找字符或子字符串
int Find( TCHAR ch ) const;
int Find( LPCTSTR lpszSub ) const;
intFind( TCHAR ch, int nStart ) const;intFind( LPCTSTR pstr, int nStart ) const;
返回值
返回此CString对象中与需要的子字符串或字
以上是关于CString类常用方法----Left(),Mid(),Right()的主要内容,如果未能解决你的问题,请参考以下文章