CString类常用方法(转载)

CString Left( int nCount ) const;                   //从左边1开始获取前 nCount 个字符

CString Mid( int nFirst ) const;                      //从左边第 nCount+1 个字符开始,获取后面所有的字符

CString Mid( int nFirst, int nCount ) const;    //从左边第 nFirst+1 个字符开始,获取后面  nCount 个字符

CString Right( int nCount ) 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 use of CString::MakeUpper.

 

  // example for CString::MakeUpper

 

  CString s( "abc" );

 

  s.MakeUpper();

 

  ASSERT( s == "ABC" );

 

在一个较大的字符串中查找字符或子字符串

int Find( TCHAR ch ) const;

int Find( LPCTSTR lpszSub ) const;

 

int Find( TCHAR ch, int nStart ) const;

 

int Find( LPCTSTR pstr, int nStart ) const;

 

返回值

  返回此CString对象中与需要的子字符串或字符匹配的第一个字符的从零开始的索引;如果没有找到子字符串或字符则返回-1。

 

参数

  ch 要搜索的单个字符。

 

  lpszSub 要搜索的子字符串。

 

  nStart 字符串中开始搜索的字符的索引,如果是0,则是从头开始搜索。如果nStart不是0,则位于nStart之前的字符不包括在搜索之内。

 

  pstr 指向要搜索的字符串的指针

/ CString::Find( TCHAR ch )

 

  CString s( "abcdef" );

 

  int n = s.Find( 'c' ); // 结果 n = 2

 

  int f = s.Find( "de" ) ; // 结果 f = 3

转载于:https://www.cnblogs.com/yanquan/p/6397545.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值