Resolved - For other noobs looking for some help:
My problem was caused by the ending parenthetical expression in a tag. The expression (^.*)((investig)(.+$) seems to work to deal with variations that include an expression with a partial word and a parenthetical expression at the end, like '(+1)' or '(anything)'.
This following expression (^.*)((investig)(.+$)|(^.*)(detect)(.+$)) maps multiple partials to a genre:
list_re_group(build_genre, ', ', '', '(^.*)((investig)(.+$)|(^.*)(detect)(.+$))', '', 'Crime & Mystery ', '');
Last edited by meghane_e; 03-09-2019 at 09:49 PM.
Reason: missing word
|