[파일명: TestStringFindApp.cpp]------------------------------------------------
// Filename: TestStringFindApp.cpp
//
// Compile: cl /clr TestStringFindApp.cpp
// Execute: TestStringFindApp
using namespace System;
using namespace System::Collections;
using namespace System::Collections::Generic;
void PrintArray(array<String^>^ arr);
bool Contains(String^ s)
{
return s->IndexOf("셋") >= 0;
}
int main(array<String^> ^args) {
array<String^>^ words = gcnew array<String^> { "하나", "둘", "셋", "넷", "다섯", "여섯" };
int where;
Console::Write("array: ");
PrintArray(words);
where = Array::FindIndex(words, gcnew Predicate<String^>(Contains));
if (where >= 0) {
Console::Write("발견! ");
Console::WriteLine("Next word of 셋 in array: {0}", words[where+1]);
}
Console::WriteLine("Sorting...");
Array::Sort(words);
Console::Write("array: ");
PrintArray(words);
where = Array::FindIndex(words, gcnew Predicate<String^>(Contains));
if (where >= 0) {
Console::Write("발견! ");
Console::WriteLine("Next word of 셋 in array: {0}", words[where+1]);
}
return 0;
}
void PrintArray(array<String^>^ arr) {
Console::Write("[");
for (int i = 0; i < arr->Length - 1; i++) {
Console::Write("{0}, ", arr[i]);
}
if (arr->Length > 0)
Console::Write("{0}", arr[arr->Length - 1]);
Console::WriteLine("]");
}
------------------------------------------------
컴파일> cl /clr testStringFindApp.cpp
실행> TestStringFindApp
array: [하나, 둘, 셋, 넷, 다섯, 여섯]
발견! Next word of 셋 in array: 넷
Sorting...
array: [넷, 다섯, 둘, 셋, 여섯, 하나]
발견! Next word of 셋 in array: 여섯
'프로그래밍 > C++' 카테고리의 다른 글
C++ 언어로 GMP 라이브러리를 이용하여 30! 까지 정확하게 계산하기 (7) | 2010.08.13 |
---|---|
스트링 리스트에서 스트링 찾기(find) for .NET with Visual C++/CLI (0) | 2009.04.30 |
명령행 인자 처리 예제 for .NET with C++/CLI (0) | 2009.04.29 |
Hello 예제 for .NET with C++/CLI (0) | 2009.04.29 |
스트링 리스트에서 스트링 찾기(find) with C++ STL (0) | 2009.04.22 |