3 Mart 2020 Salı

std::wregex Sınııf

constructor
Şöyle yaparız.
std::locale::global(std::locale("en_US.UTF-8"));

wstring s {L"Каждый охотник желает знать где сидит фазан."};
wregex re {L"[А-Яа-яЁё]+"};

for (wsregex_iterator it {s.begin(), s.end(), re}, end {}; it != end; it++) {
  wcout << it->str() << "#";
}

Hiç yorum yok:

Yorum Gönder