OmniSciDB  72c90bc290
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Regexp.h
Go to the documentation of this file.
1 /*
2  * Copyright 2022 HEAVY.AI, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
23 #ifndef REGEX_H
24 #define REGEX_H
25 
26 #include "../Shared/funcannotations.h"
27 
28 #include <cstdint>
29 
30 /*
31  * @brief regexp_like performs the SQL REGEXP operation
32  * @param str string argument to be matched against pattern.
33  * @param str_len length of str
34  * @param pattern regex pattern string for SQL REGEXP
35  * @param pat_len length of pattern
36  * @param escape_char the escape character. '\\' is expected by default.
37  * @return true if str matches pattern, false otherwise.
38  */
39 
40 extern "C" RUNTIME_EXPORT DEVICE bool regexp_like(const char* str,
41  int str_len,
42  const char* pattern,
43  int pat_len,
44  char escape_char);
45 
46 #endif // REGEX_H
#define DEVICE
#define RUNTIME_EXPORT
RUNTIME_EXPORT DEVICE bool regexp_like(const char *str, const int32_t str_len, const char *pattern, const int32_t pat_len, const char escape_char)
Definition: Regexp.cpp:39