ctype::scan_is
尋找第一個字元符合指定的遮罩的範圍。
const CharType *scan_is(
mask maskVal,
const CharType* first,
const CharType* last,
) const;
參數
maskVal
字元會符合的遮罩值。first
對第一個字元的指標會掃描的範圍。last
對字元的指標會在要掃描的範圍中的最後一個字元之後。
傳回值
對第一個字元的指標會符合指定的遮罩的範圍。 如果這個值不存在,此函式會傳回 last.。
備註
成員函式會傳回 do_scan_is(maskVal、 first, last)。
範例
// ctype_scan_is.cpp
// compile with: /EHsc
#include <locale>
#include <iostream>
using namespace std;
int main( )
{
locale loc1 ( "German_Germany" );
char *string = "Hello, my name is John!";
const char* i = use_facet<ctype<char> > ( loc1 ).scan_is
( ctype_base::punct, string, string + strlen(string) );
cout << "The first punctuation is \"" << *i << "\" at position: "
<< i - string << endl;
}
需求
標題: <地區設定>
命名空間: std