0
0
RhSolutions-Api/RhSolutions.MLModifiers/DrinkingWaterHeatingFittings/ManifoldHLV.cs
Serghei Cebotari 73275fa29e
All checks were successful
Test API / test (push) Successful in 2m20s
Fix manifold regex
2024-01-29 12:15:25 +03:00

26 lines
666 B
C#

using System.Text.RegularExpressions;
namespace RhSolutions.MLModifiers.DrinkingWaterHeatingFittings;
[MLModifierKey("Коллектор HLV")]
public class ManifoldHLV : DrinkingWaterHeatingFitting
{ private static readonly Regex _portsCount =
new(@"\s(?<Ports>\d{1,2})\s");
protected override string _title => "Распределительный коллектор HLV";
public override bool TryQueryModify(string input, out string output)
{
var match = _portsCount.Match(input);
if (match.Success)
{
output = $"{_title} на {match.Groups["Ports"]} групп";
return true;
}
else
{
output = string.Empty;
return false;
}
}
}