Regex updated to include spaces only in a line.
This commit is contained in:
@@ -55,7 +55,7 @@ public class EffectsParser {
|
||||
|
||||
// Remove all lines that contain a # and leading/trailing blank lines
|
||||
|
||||
effectData = effectData.replaceAll("(?m)^.*#.*\r?\n?", "");
|
||||
effectData = effectData.replaceAll("(?m)^[ \t]*\r?\n?", "");
|
||||
effectData = effectData.trim();
|
||||
|
||||
// Parse effect entry header
|
||||
|
||||
@@ -72,9 +72,9 @@ public class PowersParser {
|
||||
// Cleanup dangling tags and lines that contain a # and leading/trailing blank lines
|
||||
|
||||
powerString = new StringBuilder(powerString.toString().replaceAll("CONDITIONBEGINCONDITIONEND", ""));
|
||||
powerString = new StringBuilder(powerString.toString().replaceAll("(?m)^.*#.*\r?\n?", ""));
|
||||
powerString = new StringBuilder(powerString.toString().replaceAll("(?m)^[ \t]*\r?\n?", ""));
|
||||
|
||||
conditionString = new StringBuilder(conditionString.toString().replaceAll("(?m)^.*#.*\r?\n?", ""));
|
||||
conditionString = new StringBuilder(conditionString.toString().replaceAll("(?m)^[ \t]*\r?\n?", ""));
|
||||
|
||||
// Parse header line in power data
|
||||
|
||||
|
||||
Reference in New Issue
Block a user