");
+ private readonly Regex ringCodeDoubleRegex = new Regex(@""); // Varies based on available fields, like Addtional Mould
+ private readonly Regex ringCodeSingleRegex = new Regex(@""); // Varies based on available fields, like Addtional Mould
+ private readonly Regex serialRegex = new Regex(@"| Serial | (.*?) |
");
+ private readonly Regex systemRegex = new Regex(@"| System | ");
+ private readonly Regex titleRegex = new Regex(@"(.*?)");
+ private readonly Regex trackRegex = new Regex(@"| (?.*?) | (?.*?) | (?.*?) | (?.*?) | (?.*?) | (?.*?) | (?.*?) | (?.*?) | (?.*?) | ");
+ private readonly Regex trackCountRegex = new Regex(@"| Number of tracks | (.*?) | ");
+ private readonly Regex versionRegex = new Regex(@"| Version | (.*?) | ");
+ private readonly Regex writeOffsetRegex = new Regex(@"| Write offset | (.*?) | ");
#endregion
diff --git a/DICUI.Library/Web/RedumpAccess.cs b/DICUI.Library/Web/RedumpAccess.cs
index 85b9271f..2d5e276a 100644
--- a/DICUI.Library/Web/RedumpAccess.cs
+++ b/DICUI.Library/Web/RedumpAccess.cs
@@ -55,9 +55,9 @@ namespace DICUI.Web
#region Regexes
- private Regex discRegex = new Regex(@"");
- private Regex newDiscRegex = new Regex(@"");
- private Regex tokenRegex = new Regex(@"");
+ private readonly Regex discRegex = new Regex(@"");
+ private readonly Regex newDiscRegex = new Regex(@"");
+ private readonly Regex tokenRegex = new Regex(@"");
#endregion
|
|---|