⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 searchmethod.h

📁 vc编译的酒店管理系统
💻 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 + -