|
@@ -79,6 +79,7 @@ public class CatalogueUtil {
|
|
|
public static List<String> noInQuotes(List<String> words, String text) {
|
|
|
List<String> retWords = Lists.newArrayList();
|
|
|
if (ListUtil.isNotEmpty(words) && StringUtil.isNotBlank(text)) {
|
|
|
+ text = text.replaceAll("[“”]", "\"");
|
|
|
List<String> sections = Lists.newArrayList();
|
|
|
int index = 0;
|
|
|
for (String txt : text.split("\"")) {
|