lbug 0.16.1

An in-process property graph database management system built for query speed and scalability
Documentation
#pragma once

#include <regex>

#include "common/vector/value_vector.h"

namespace lbug {
namespace function {

struct BaseRegexpOperation {
    static inline std::string parseCypherPattern(const std::string& pattern) {
        // Cypher parses escape characters with 2 backslash eg. for expressing '.' requires '\\.'
        // Since Regular Expression requires only 1 backslash '\.' we need to replace double slash
        // with single
        return std::regex_replace(pattern, std::regex(R"(\\\\)"), "\\");
    }

    static inline void copyToLbugString(const std::string& value, common::string_t& lbugString,
        common::ValueVector& valueVector) {
        common::StringVector::addString(&valueVector, lbugString, value.data(), value.length());
    }
};

} // namespace function
} // namespace lbug