stringex.h

来自「快速SQL交互工具」· C头文件 代码 · 共 23 行

H
23
字号
// StringEx.h header file
//

#if !defined(AFX_STRINGEX_H__EC4A985F_BA87_11D1_AE4F_204C4F4F5020__INCLUDED_)
#define AFX_STRINGEX_H__EC4A985F_BA87_11D1_AE4F_204C4F4F5020__INCLUDED_

#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000

//////////////////////////////////////////////////////////////////////
// StringEx.h

class CStringEx : public CString
{
public:
	CStringEx() : CString( ){};
	CStringEx(const CString& stringSrc) : CString(stringSrc){};
	int Find(LPCTSTR lpszSub, int nStartPos = 0) const;
	int FindNoCase(LPCTSTR lpszSub, int nStartPos = 0) const;
};

#endif // !defined(AFX_STRINGEX_H__EC4A985F_BA87_11D1_AE4F_204C4F4F5020__INCLUDED_)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?