8 Ağustos 2017 Salı

regex regex Sınıfı

Giriş
Şu satırı dahil ederiz.
#include <boost/regex.hpp>
Constructor
Şöyle yaparız.
boost::regex r ("...");
Şöyle yaparız.

boost::regex r {"..."};
Copy Constructor
Şöyle yaparız.
std::string pattern = "...";
boost::regex re = boost::regex (pattern);
Perl
Şöyle yaparız.
//a case insensitive Perl regular expression:
boost::regex e2(pattern, boost::regex::perl|boost::regex::icase);

Hiç yorum yok:

Yorum Gönder