blob: 2ac2cf1ab45ef96ed13588d1ffac855b1df59ce8 (
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.Parsers.Fittings;
[ParserKey("Коллектор G1")]
public class ManifoldG1 : DrinkingWaterHeatingFitting
{
private static readonly Regex _portsCount =
new(@"\s(?<Ports>\d{1})\s");
protected override string _title => "Распределительный коллектор G1";
public override bool TryParse(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;
}
}
}
|