|
@@ -128,9 +128,12 @@ struct port parse_portcim(const std::string line) {
|
|
|
struct port p;
|
|
|
p.sector = std::stoi(line);
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
static std::regex portrx(
|
|
|
- "[ ]*([0-9]+) (.)[ ]+([0-9]+)[ ]+([0-9]+%) (.)[ "
|
|
|
- "]+([0-9]+)[ ]+([0-9]+%) (.)[ ]+([0-9]+)[ ]+([0-9]+%)[ ]*",
|
|
|
+ "[ ]*([0-9]+) (.)[ ]*([0-9]+)[ ]+([0-9]+%) (.)[ "
|
|
|
+ "]*([0-9]+)[ ]+([0-9]+%) (.)[ ]*([0-9]+)[ ]+([0-9]+%)[ ]*",
|
|
|
std::regex_constants::ECMAScript);
|
|
|
|
|
|
|