blob: ec3ba9386f5251a7e1940b72fca10cae38a76ff8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
using System.Text.RegularExpressions;
namespace RhSolutions.MLModifiers.DrinkingWaterHeatingFittings;
[MLModifierKey("Коллектор G1")]
public class ManifoldG1 : DrinkingWaterHeatingFitting
{
private static readonly Regex _portsCount =
new(@"\b(?<Ports>\d{1})\b");
protected override string _title => "Распределительный коллектор G1";
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;
}
}
}
|