Giriş
Şu satırı dahil ederiz.
Şöyle yaparız.
Ş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