mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Not all CMP DATs use the same whitespace
This commit is contained in:
@@ -13,7 +13,7 @@ namespace SabreTools.Helper
|
|||||||
{
|
{
|
||||||
// Regex matching patterns
|
// Regex matching patterns
|
||||||
private static string _headerPattern = @"(^.*?) \($";
|
private static string _headerPattern = @"(^.*?) \($";
|
||||||
private static string _itemPattern = @"^\s+(\S*?) (.*)";
|
private static string _itemPattern = @"^\s*(\S*?) (.*)";
|
||||||
private static string _endPattern = @"^\s*\)\s*$";
|
private static string _endPattern = @"^\s*\)\s*$";
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -124,7 +124,7 @@ namespace SabreTools.Helper
|
|||||||
|
|
||||||
elem.Add(new XElement(temp));
|
elem.Add(new XElement(temp));
|
||||||
}
|
}
|
||||||
// If the line is anything but a rom or disk and we're in a block
|
// If the line is anything but a rom or disk and we're in a block
|
||||||
else if (Regex.IsMatch(line, _itemPattern) && block)
|
else if (Regex.IsMatch(line, _itemPattern) && block)
|
||||||
{
|
{
|
||||||
GroupCollection gc = Regex.Match(line, _itemPattern).Groups;
|
GroupCollection gc = Regex.Match(line, _itemPattern).Groups;
|
||||||
|
|||||||
Reference in New Issue
Block a user