40 lines
815 B
C++
40 lines
815 B
C++
#ifndef REGEX_REPLACEMENT_HDR
|
|
#define REGEX_REPLACEMENT_HDR
|
|
|
|
#include <string>
|
|
#include "concordia/common/config.hpp"
|
|
#include "concordia/concordia_exception.hpp"
|
|
#include <boost/shared_ptr.hpp>
|
|
#include <boost/regex.hpp>
|
|
#include <boost/regex/icu.hpp>
|
|
|
|
|
|
/*!
|
|
Class for replacing string occurences.
|
|
|
|
*/
|
|
|
|
using namespace std;
|
|
|
|
typedef boost::error_info<struct my_tag,std::string> my_tag_error_info;
|
|
|
|
class RegexReplacement {
|
|
public:
|
|
RegexReplacement(string patternString, string replacement,
|
|
bool caseSensitive = true)
|
|
throw(ConcordiaException);
|
|
|
|
/*! Destructor.
|
|
*/
|
|
virtual ~RegexReplacement();
|
|
|
|
string apply(const string & text);
|
|
|
|
private:
|
|
boost::u32regex _pattern;
|
|
|
|
string _replacement;
|
|
};
|
|
|
|
#endif
|