mirror of
https://github.com/Nioux/AideDeJeu.git
synced 2025-11-02 16:27:04 +00:00
Correction filtre challenge
This commit is contained in:
parent
9e2af2895a
commit
7566930424
1 changed files with 3 additions and 3 deletions
|
|
@ -22,11 +22,11 @@ namespace AideDeJeu.Tools
|
||||||
if (string.IsNullOrEmpty(x) && string.IsNullOrEmpty(y)) return 0;
|
if (string.IsNullOrEmpty(x) && string.IsNullOrEmpty(y)) return 0;
|
||||||
if (string.IsNullOrEmpty(x)) return 1;
|
if (string.IsNullOrEmpty(x)) return 1;
|
||||||
if (string.IsNullOrEmpty(y)) return -1;
|
if (string.IsNullOrEmpty(y)) return -1;
|
||||||
var regex = new Regex(@"\((?<xp>\d*?) (PX|XP)\)");
|
var regex = new Regex(@"\((?<xp>\d?\d?\d?\s?\d?\d?\d??) (PX|XP)\)");
|
||||||
int xpx;
|
int xpx;
|
||||||
int.TryParse(regex.Match(x).Groups["xp"].Value, out xpx);
|
int.TryParse(regex.Match(x).Groups["xp"].Value.Replace(" ",""), out xpx);
|
||||||
int xpy;
|
int xpy;
|
||||||
int.TryParse(regex.Match(y).Groups["xp"].Value, out xpy);
|
int.TryParse(regex.Match(y).Groups["xp"].Value.Replace(" ",""), out xpy);
|
||||||
return xpx - xpy;
|
return xpx - xpy;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue