41 bool get_param_value(
const std::string& param_name,
const std::string& ini_entry, std::string&
res)
43 std::string expr_str = std::string() +
"^("+ param_name +
") *=(.*?)$";
44 const boost::regex match_ini_entry( expr_str, boost::regex::icase | boost::regex::normal);
46 if(!boost::regex_search(ini_entry, result, match_ini_entry, boost::match_default))