?? searchmethod.h
字號:
// SearchMethod.h: interface for the CSearchMethod class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_SEARCHMETHOD_H__7F729996_60A1_4F7C_A570_FBA99FFB122E__INCLUDED_)
#define AFX_SEARCHMETHOD_H__7F729996_60A1_4F7C_A570_FBA99FFB122E__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CSearchMethod
{
public:
bool MatchingString(const char* lpszSour, const char* lpszMatch, bool bMatchCase=false);
int FindingString(const char* lpszSour, const char* lpszFind, int nStart = 0);
bool EnableMatches(CString str1, CString str2);
bool IsMatchString(CString str1, CString str2);//字符竄是否匹配
bool CheckString(CString str);//字符竄是否合法
CSearchMethod();
virtual ~CSearchMethod();
//屬性
int serial[50];//保存序列號
char serialchar[50];//保存字符的數組
};
#endif // !defined(AFX_SEARCHMETHOD_H__7F729996_60A1_4F7C_A570_FBA99FFB122E__INCLUDED_)
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -