문자열에서 일치 찾기

1833 단어
std::string
find_first_of()는 두 문자열 중 다음 문자열이 한 글자만 충족하면 성공한다는 것을 나타낸다.
코드는 다음과 같습니다.
// c++_c.cpp :              。
//

#include "stdafx.h"
#include <iostream>
#include <string>


using namespace std;


int _tmain(int argc, _TCHAR* argv[])
{
	string src("ikadwji,ajdwkkaqmdjen,skkamopqlnanu.");
	cout<<"     :"<<endl;
	size_t cp;

	cp = src.find_first_of("aeiou");
	int i = 0;

	while (cp != string::npos)
	{
		cout<< src.at(cp) << " ";
		cp = src.find_first_of("aeiou", cp+1);
		i++;
	}
	cout<<endl<<i;
	
	
	system("pause");
	return 0;
}

ATL::CString
알파벳을 대문자로 바꾸기: 코드는 다음과 같습니다.
// c++_d.cpp :              。
//

#include "stdafx.h"
#include <iostream>

using namespace std;



int _tmain(int argc, _TCHAR* argv[])
{
	CString str=_T("abc");
	str.MakeUpper();
	
	/*wcout <<(LPCTSTR)str <<endl;*/
	wcout<<str.GetString()<<endl;


	
	system("pause");
	return 0;
}

표현식의 문자 추출
코드는 다음과 같습니다.
// c++_d.cpp :              。
//

#include "stdafx.h"
#include <iostream>

using namespace std;



int _tmain(int argc, _TCHAR* argv[])
{
	CString str(_T("(100 + 200) / 50 - 20 * 8"));
	CString token;

	int i = 0;
	int m = 1;

	while (true)
	{
		token = str.Tokenize(_T(" +-*/()"), i);
		if (token == _T(""))
		{
			break;
		}
		CString out;
		out.Format(_T("token %02d: %s\r
"), m, token); _tprintf(out); /*wcout<<(LPCTSTR)out<<endl;*/ m++; } /*wcout <<(LPCTSTR)str <<endl;*/ /*wcout<<str.GetString()<<endl;*/ system("pause"); return 0; }

좋은 웹페이지 즐겨찾기