Page MenuHomePhabricator (Chris)

No OneTemporary

Authored By
Unknown
Size
1 KB
Referenced Files
None
Subscribers
None
diff --git a/util/regex.cpp b/util/regex.cpp
index 2187c2c3..124155f5 100644
--- a/util/regex.cpp
+++ b/util/regex.cpp
@@ -1,36 +1,36 @@
#include <string>
/* gnu/posix's regex header */
#include <regex.h>
/* our regex header */
#include "regex.h"
using namespace std;
/* http://www.gnu.org/s/libc/manual/html_node/Regular-Expressions.html */
bool Util::matchRegex(const string & str, const string & pattern){
regex_t regex;
if (regcomp(&regex, pattern.c_str(), REG_EXTENDED) != 0){
return false;
}
bool matched = regexec(&regex, str.c_str(), 0, NULL, 0) == 0;
regfree(&regex);
return matched;
}
string Util::captureRegex(const string & str, const string & pattern, int capture){
regex_t regex;
regmatch_t matches[20];
if (regcomp(&regex, pattern.c_str(), REG_EXTENDED) != 0){
return "";
}
bool matched = regexec(&regex, str.c_str(), 20, matches, 0) == 0;
regfree(&regex);
if (matched){
if (matches[capture+1].rm_so != -1){
int start = matches[capture+1].rm_so;
int end = matches[capture+1].rm_eo;
- return str.substr(start, end);
+ return str.substr(start, end - start);
}
}
return "";
}

File Metadata

Mime Type
text/x-diff
Expires
Thu, Jun 11, 1:26 PM (3 w, 4 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
69240
Default Alt Text
(1 KB)

Event Timeline