std::string find 함수
View 14,485 | 작성일2010.11.17 20:08
관련링크
본문
bool IsTherePattern(const std::string source, const std::string pattern)
{
// Source string 에 pattern 이 존재하는지 안하는지 boolean value를 리턴한다.
if( source.find(pattern) != std::string::npos)
{
// 존재하면
return true;
}
else
{
return false;
}
}
// 주의!!.. 부분적으로 존재하면 무조건 true를 날림
// whole_word 단위 같은 계산은 없음
{
// Source string 에 pattern 이 존재하는지 안하는지 boolean value를 리턴한다.
if( source.find(pattern) != std::string::npos)
{
// 존재하면
return true;
}
else
{
return false;
}
}
// 주의!!.. 부분적으로 존재하면 무조건 true를 날림
// whole_word 단위 같은 계산은 없음