2024-01-29 11:35:34 +03:00
|
|
|
using System.Text.RegularExpressions;
|
|
|
|
|
2024-02-08 17:11:11 +03:00
|
|
|
namespace RhSolutions.Parsers.Fittings;
|
2024-01-29 11:35:34 +03:00
|
|
|
|
2024-02-08 17:11:11 +03:00
|
|
|
[ParserKey("Коллектор HLV")]
|
2024-01-29 11:35:34 +03:00
|
|
|
public class ManifoldHLV : DrinkingWaterHeatingFitting
|
|
|
|
{ private static readonly Regex _portsCount =
|
2024-01-29 12:15:25 +03:00
|
|
|
new(@"\s(?<Ports>\d{1,2})\s");
|
2024-01-29 11:35:34 +03:00
|
|
|
|
|
|
|
protected override string _title => "Распределительный коллектор HLV";
|
|
|
|
|
2024-02-08 17:11:11 +03:00
|
|
|
public override bool TryParse(string input, out string output)
|
2024-01-29 11:35:34 +03:00
|
|
|
{
|
|
|
|
var match = _portsCount.Match(input);
|
|
|
|
if (match.Success)
|
|
|
|
{
|
|
|
|
output = $"{_title} на {match.Groups["Ports"]} групп";
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
output = string.Empty;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|