|
@@ -724,7 +724,8 @@ public class ExcutePatentDataStar implements IExcutePatentData {
|
|
|
String right = macherGroup.replaceAll("<!--.*?-->", "").trim();
|
|
|
right = right.replaceAll("<.*?>", "").trim();
|
|
|
right = right.replaceAll(" +", "");
|
|
|
- right = right.replace("\r\n", "").replace("\n", "");
|
|
|
+ right = right.replaceAll("<br/>", "");
|
|
|
+ right = right.replace("\r\n", "").replace("\n", "").replace("\t", "");
|
|
|
builder.append(right).append("\r\n");
|
|
|
}
|
|
|
|