Как форматировать столбцы DateTime в DataGridView?

Воспользуйтесь преимуществом стандарта char_traits. Напомним, что a std::string на самом деле является typedef для std::basic_string или, точнее, std::basic_string >. Тип char_traits описывает, как сравниваются символы, как они копируются, как они преобразуются и т. Д. Все, что вам нужно сделать, это ввести новую строку над basic_string и предоставить свой собственный char_traits, который сравнивает регистр без учета регистра.

struct ci_char_traits : public char_traits {
    static bool eq(char c1, char c2) { return toupper(c1) == toupper(c2); }
    static bool ne(char c1, char c2) { return toupper(c1) != toupper(c2); }
    static bool lt(char c1, char c2) { return toupper(c1) <  toupper(c2); }
    static int compare(const char* s1, const char* s2, size_t n) {
        while( n-- != 0 ) {
            if( toupper(*s1) < toupper(*s2) ) return -1;
            if( toupper(*s1) > toupper(*s2) ) return 1;
            ++s1; ++s2;
        }
        return 0;
    }
    static const char* find(const char* s, int n, char a) {
        while( n-- > 0 && toupper(*s) != toupper(a) ) {
            ++s;
        }
        return s;
    }
};

typedef std::basic_string ci_string;

Подробная информация о Гуру Недели № 29 .

39
задан abatishchev 27 October 2010 в 12:31
поделиться