collate::transform
문자 시퀀스 로케일에서 사전순으로 비교에 로케일에서 마찬가지로 변환 다른 문자 시퀀스를 사용할 수 있는 문자열로 변환 합니다.
string_type transform(
const CharType* _First,
const CharType* _Last
) const;
매개 변수
_First
변환할 시퀀스에서 첫 번째 문자에 대 한 포인터입니다._Last
변환할 시퀀스의 마지막 문자에 대 한 포인터입니다.
반환 값
변환 된 문자 시퀀스를 포함 하는 문자열입니다.
설명
멤버 함수를 반환 합니다. do_transform(_First, _Last).
예제
// collate_transform.cpp
// compile with: /EHsc
#include <locale>
#include <iostream>
#include <tchar.h>
using namespace std;
int main( )
{
locale loc ( "German_Germany" );
_TCHAR* s1 = _T("\x00dfzz abc.");
// \x00df is the German sharp-s (looks like beta),
// it comes before z in the alphabet
_TCHAR* s2 = _T("zzz abc.");
collate<_TCHAR>::string_type r1; // OK for typedef?
r1 = use_facet< collate<_TCHAR> > ( loc ).
transform (s1, &s1[_tcslen( s1 )-1 ]);
cout << r1 << endl;
basic_string<_TCHAR> r2 = use_facet< collate<_TCHAR> > ( loc ).
transform (s2, &s2[_tcslen( s2 )-1 ]);
cout << r2 << endl;
int result1 = use_facet<collate<_TCHAR> > ( loc ).compare
(s1, &s1[_tcslen( s1 )-1 ], s2, &s2[_tcslen( s2 )-1 ] );
cout << _tcscmp(r1.c_str( ),r2.c_str( )) << result1
<< _tcscmp(s1,s2) <<endl;
}
요구 사항
헤더: <locale>
네임 스페이스: std