zoukankan      html  css  js  c++  java
  • CString类常用方法----Left(),Mid(),Right() .

    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 个字符

    注:

         在函数后面加 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

  • 相关阅读:
    Java实现生产者消费者模式
    LRU结构(采用hashmap + 双向链表实现)
    自定义优先级队列PriorityQueue
    KdApiSearchDemo
    MongoDBHelper
    WebApiInvoker
    轨迹
    SignAttribute
    web api 压缩
    web api 缓存类
  • 原文地址:https://www.cnblogs.com/yangxx-1990/p/4881158.html
Copyright © 2011-2022 走看看