Skip to content

Commit 1924a23

Browse files
authored
Merge pull request #13 from smohr/bugfix/invalid-escape-sequences-drop-tags
fix: invalid escape sequences in DropTags module (#12)
2 parents 381d936 + 9fd228a commit 1924a23

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

src/mgds/pipelineModules/DropTags.py

+5-6
Original file line numberDiff line numberDiff line change
@@ -72,18 +72,17 @@ def get_special_tags(self, sptags: str, delim: str) -> list[str]:
7272
#parse regex expressions, create new special list based on matches
7373
def parse_regex(self, splist_in: list[str], taglist: list[str]) -> list[str]:
7474
splist_out = []
75-
regex_spchars = set(".^$*+?!\{\}\[\]|()\\")
75+
regex_spchars = set(".^$*+?!{}[]|()\\")
7676
for c in splist_in:
77-
if any((a in regex_spchars) for a in c): #only do regex matching if tag contains special character
78-
c = c.replace("\)", "\\\\\)")
79-
c = c.replace("\(", "\\\\\(") #hopefully fix issues caused by "\(\)" syntax without affecting other regex
80-
r = re.compile(c)
77+
if any((a in regex_spchars) for a in c):
78+
pattern = re.escape(c)
79+
r = re.compile(pattern)
8180
for s in taglist:
8281
if r.fullmatch(s):
8382
splist_out.append(s)
8483
else:
8584
splist_out.append(c)
86-
return splist_out
85+
return splist_out
8786

8887
#change probability evaluated against random() depending on mode
8988

0 commit comments

Comments
 (0)