VC入门宝典三(String)

简介: VC入门宝典三(String)

主要内容:

1,主要函数的实现

2,常用函数

3.CStringchar []的相互转换

4,将NULL字节放入CString中

 

vc中最主要函数不易理解。

CString::CString(char *p)
{
       int n=strlen(p);
       m_data = new char[n+1];
       strcpy(m_data,p);
}
CString::CString(CString &other)
{
       int n=strlen(other.m_data);
       m_data = new char[n+1];
       strcpy(m_data,other.m_data);
}
CString& CString::operator = (CString& other)
{
       delete[] m_data;
       int n=strlen(other.m_data);
       m_data = new char[n+1];
       strcpy(m_data,other.m_data);
       return *this;
}
String::~String()
{
       delete [] m_data;
}

CollateCompare       与一个字符长指针所指的字符串进行比较,与strcmp相同,它们的区别是,分别调用_tcscoll_tcsicmp

Delete

int Delete( int nIndex, int nCount = 1 )

返回值是被删除前的字符串的长度,nIndex是第一个被删除的字符,nCount是一次删除几个字符。根据我实验得出的结果:当nCount>字符串的长度时会出错,当nCount过大,没有足够的字符删除时,此函数不执行。

 

FindOneOf

intFindOneOf(LPCTSTRlpszCharSet)const;

此函数的功能是在查找lpszCharSet中的任意一个字符,查到一个就把位置返回,没有查到返回0。如:

CString str = "0123456789";

int x = str.FindOneOf("31");

x的值是1

 

Find
int Find( TCHAR ch ) const;
int Find( LPCTSTR lpszSub ) const;
int Find( TCHAR ch, int nStart ) const;
int Find( LPCTSTR pstr, int nStart ) const;

返回值查找到的序号,ch待搜索的字符,lpszSub待搜索的字符子串,nStart 从那里开始搜索。如:

 

CString str = "0123456789";

int x = str.Find("34",4);

返回的值是-1.

 

GetAt

TCHARGetAt(intnIndex)const;

返回标号为nIndex的字符,你可以把字符串理解为一个数组,GetAt类似于[].注意nIndex的范围,如果不合适会有调试错误。

 

Insert

int Insert( int nIndex, TCHAR ch )
int Insert( int nIndex, LPCTSTR pstr )
返回修改后的长度,nIndex字符(或字符串)插入后的标号。

Left

CStringLeft(intnCount)const;

返回的字符串的前nCount个字符。

RightLeft类似

 

MakeLower MakeUpper改变字符的大小写

MakeReverse字符倒置,如:

CString str = "X0123456789";
       str.MakeReverse();
str变为"9876543210X"
 +=
const CString& operator +=( const CString& string );
const CString& operator +=( TCHAR ch );
const CString& operator +=( LPCTSTR lpsz );

将参数合并到自己身上。

如:      

CString str = "0123456789";
              str+="ha";
str为"0123456789ha";
str[]
TCHAR operator []( int nIndex ) const;

象处理字符数组一样处理字符串。

注意是只读的。

CString str = "0123456789";

      str[0]='x';

是错误的。

TrimLeft,TrimRight
void TrimLeft( );
void CString::TrimLeft( TCHAR chTarget );
void CString::TrimLeft( LPCTSTR lpszTargets );
void TrimRight( );
void CString::TrimRight( TCHAR chTarget );
void CString::TrimRight( LPCTSTR lpszTargets );
CString str = "/n/t a";
str.TrimLeft();
str为“a”;

   如果没有参数,从左删除字符(/n/t空格等),至到遇到一个非此类字符.

当然你也可以指定删除那些字符.

如果指定的参数是字符串,那么遇上其中的一个字符就删除.

CString str = "abbcadbabcadb ";
str.TrimLeft("ab");
结果"cadbabcadb "
int CString::Remove( TCHAR ch );

ch删除的字符.

返回删除字符的个数,有多个时都会删除.

 

CString char []之间的转换.  

char str[100] = ”str”;
CString sstr = “sstr”;
str.Format(“%s”,str);
str = LPCTSTR sstr;
strcpy(str,(LPCTSTR)sstr);

如果是赋值,则要:

CString s(_T("This is a test "));
LPTSTR p = s.GetBuffer();
// 在这里添加使用p的代码
if(p != NULL) *p = _T('/0');
s.ReleaseBuffer();
// 使用完后及时释放,以便能使用其它的CString成员函数
str的值变了.

将NULL字节放入CString中
1,CString str("abc/0""def", 7);
 str +="g";
 int nLength = str.GetLength();
 nLength为8.
2,CString str("My name is hedan!");
 str.SetAt(5, 0);
 int nLength = str.GetLength();
注意:不是所有的CString成员函数都可以,在使用时一定要小心。

实例:动态配置数据源

CString strDsn,strDBQ;
strDsn = "DSN=test";
strDBQ.Format("DBQ=%s",strSourceMDBName);
CString strConnect = strDsn + " " + strDBQ ;
strConnect.SetAt(strDsn.GetLength(),'/0'); 
SQLConfigDataSource(NULL, ODBC_ADD_SYS_DSN, "Microsoft Access Driver (*.mdb)", strConnect);


相关文章
|
7月前
|
存储 C++ 容器
C++入门指南:string类文档详细解析(非常经典,建议收藏)
C++入门指南:string类文档详细解析(非常经典,建议收藏)
92 0
|
2月前
|
C++ 容器
C++入门7——string类的使用-2
C++入门7——string类的使用-2
29 0
|
2月前
|
C语言 C++ 容器
C++入门7——string类的使用-1
C++入门7——string类的使用-1
27 0
|
4月前
|
NoSQL 安全 Java
Redis6入门到实战------ 三、常用五大数据类型(字符串 String)
这篇文章深入探讨了Redis中的String数据类型,包括键操作的命令、String类型的命令使用,以及String在Redis中的内部数据结构实现。
Redis6入门到实战------ 三、常用五大数据类型(字符串 String)
|
7月前
|
存储 NoSQL 安全
Redis入门到通关之Redis数据结构-String篇
Redis入门到通关之Redis数据结构-String篇
106 1
|
7月前
|
存储 缓存 NoSQL
Redis入门到通关之String命令
Redis入门到通关之String命令
59 0
|
7月前
|
C++
【C++STL基础入门】string类的基础使用
总之,`string`类是C++中用于操作字符串的重要工具,提供了丰富的方法来进行字符串操作、查找、替换等操作,简化了字符串处理的任务。 买CN2云服务器,免备案服务器,高防服务器,就选蓝易云。百度搜索:蓝易云
39 0
|
7月前
|
存储 算法 C++
【C++入门到精通】C++入门 —— string类(STL)
前面我们讲了C语言的基础知识,也了解了一些数据结构,并且讲了有关C++的命名空间的一些知识点以及关于C++的缺省参数、函数重载,引用 和 内联函数也认识了什么是类和对象以及怎么去new一个‘对象’,也相信大家都掌握的不错,接下来博主将会带领大家继续学习有关C++比较重要的知识点——STL(string类)
102 0
|
7月前
|
C语言 C++ 容器
[C++从入门到精通] 3.string类型的相关用法
[C++从入门到精通] 3.string类型的相关用法
75 0
[C++从入门到精通] 3.string类型的相关用法
|
缓存 Linux C语言
C++入门第六篇—STL模板---string【下】string模板的实现(下)
C++入门第六篇—STL模板---string【下】string模板的实现(下)
67 0