?? vb6functions.h
字號:
// VB6functions.h
// Philip Sakellaropoulos 2001
#if !defined(VB6STRING_H__INCLUDED_)
#define VB6STRING_H__INCLUDED_
#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000
#ifndef _AFXDLL
#include "MFCstring.h"
using namespace NotMFC;
#endif
#include <vector>
namespace VB6
{
CString ReadUntil(CString &sIn,const CString &sDelim,bool &bFound);
CString Join(const std::vector<CString> &source,const CString sDelim = "=");
// split sIn using the delimeter sDelim. Put result array into vector
std::vector<CString> Split(CString sIn,const CString sDelim = ",",const long nLimit = -1);
// Replace sFind with sReplace
// nStart can be 0 - sIn.GetLength()-1 (char indexes start from 0 in VC, not 1 as in VB)
CString Replace(const CString sIn,const CString sFind, const CString sReplace,
const long nStart = 0, const long nCount = -1);
} // namespace
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -