常用字符串函数

本文详细介绍了多种常用的字符串处理函数,包括字符串比较、长度计算、赋值、连接及字符查找等功能,并提供了具体的函数名称及其使用场景。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

 
常用字符串函数
1. 字符串比较函数
//比较两个字符串是否相同 
int StrCmp(LPCTSTR  lpStr1 ,LPCTSTR  lpStr2 );
int StrCmpN(LPCTSTR  lpStr1 ,LPCTSTR  lpStr2 ,int  nChar );
int strcmp( const char * string1, const char * string2 );
int wcscmp( const wchar_t * string1, const wchar_t * string2 );
int CompareString( LCID Locale DWORD dwCmpFlags LPCTSTR lpString1 int cchCount1 LPCTSTR lpString2 int cchCount2 );
2. 计算字符串长度
 
         HRESULT StringCchLength( LPCTSTR  psz ,size_t  cchMax ,size_t * pcch ); //replacement for strlen
          size_t strlen( const char * string );
          size_t wcslen( const wchar_t * string );
 
3. 字符串赋值函数
 
         HRESULT StringCchCopy(LPTSTR  pszDest ,size_t  cchDest ,LPCTSTR  pszSrc ); //replacement for strcpy
         HRESULT StringCchCopyN( LPTSTR  pszDest , size_t  cchDest , LPCTSTR  pszSrc , size_t  cchSrc ); //replacement for strncpy
         LPTSTR StrCpy(LPTSTR  psz1 ,LPCTSTR  psz2 );  //存在安全问题
          LPTSTR StrCpyN(LPTSTR  psz1 ,LPCTSTR  psz2 ,int  cchMax );  //存在安全问题
          char *strcpy( char * strDestination, const char * strSource );
          wchar_t *wcscpy( wchar_t * strDestination, const wchar_t * strSource );
          char *strncpy( char * strDest , const char * strSource , size_t count );
          wchar_t *wcsncpy( wchar_t*
strDest , const wchar_t * strSource , size_t count );
 
4. 字符串连接函数
 
       HRESULT StringCchCat( LPTSTR  pszDest ,size_t  cchDest ,LPCTSTR  pszSrc ); //replacement for strcat
         HRESULT StringCchCatN( LPTSTR  pszDest ,size_t  cchDest ,LPCTSTR  pszSrc ,size_t  cchMaxAppend ); //replacement for strncat
        LPTSTR StrCat( LPTSTR  psz1 ,LPCTSTR  psz2 );  //存在安全问题
         LPTSTR StrNCat( LPTSTR  pszFront ,LPCTSTR  pszBack ,int  cchMax );  //存在安全问题
        char *strcat( char * strDestination, const char * strSource );
         wchar_t *wcscat( wchar_t * strDestination, const wchar_t * strSource );
         char *strncat( char * strDest, const char * strSource, size_t count );
         wchar_t *wcsncat( wchar_t * strDest, const wchar_t * strSource, size_t count );
 
5. 字符查找函数
 
         //查找字符串中指定字符第一次出现的位置
         LPTSTR StrChr( LPCTSTR  lpStart ,TCHAR  wMatch ); //区分大小写
         char *strchr( const char * string, int c );
         wchar_t * wcschr( const wchar_t * string, wchar_t c );
         LPTSTR StrChrI( LPCTSTR  lpStart ,TCHAR  wMatch ); //不区分大小写
 
       //查找字符串中指定字符最后一次出现的位置
       LPTSTR StrRChr( LPCTSTR  lpStart ,LPCTSTR  lpEnd ,TCHAR  wMatch ); //区分大小写
       char *strrchr( const char* string , int c );
         wchar *wcsrchr( const wchar_t * string, int c );
         LPTSTR StrRChrI( LPCTSTR  lpStart ,LPCTSTR  lpEnd ,TCHAR  wMatch ); //不区分大小写
       
       *注   StrRChr()函数可以通过StrChr()函数和while循环来实现。
 
补充:
查找字符串:

    _tcsstr(........)

字符串转化为double型数字

    _tcstod( const char *nptr,   char **endptr )

 

字符串转化为double型整数(只取整数部分,不取小数)Convert strings to a long-integer value.

     _tcstoul  (  const char *nptr,   char **endptr,   int base )

    _tcstol  (  const char *nptr,   char **endptr,   int base )

 

取子字符串

Extracts a substring of length nCount characters from this CStringT object, starting at position iFirst (zero-based).

CStringT Mid(
   int iFirst,
   int nCount
) const;
CStringT Mid(
   int iFirst
) const;
example:
//typedef CStringT< TCHAR, StrTraitATL< TCHAR > > CAtlString;

CAtlString s( _T("abcdef") );
_ASSERT( s.Mid( 2, 3 ) == _T("cde") );

 

 

 

 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值