blob: 8ef4f33dfc3bfb433bcae310fe26302eec2bcb35 (
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
28
29
30
31
32
33
34
35
36
37
38
|
using System.Text.RegularExpressions;
namespace RhSolutions.Parsers.Fittings;
public abstract class Adapter : DrinkingWaterHeatingFitting
{
protected Dictionary<string, string> _defaultThreads = new()
{
["16"] = "1/2",
["20"] = "1/2",
["25"] = "3/4",
["32"] = "1",
["40"] = "1 1/4",
["50"] = "1 1/2",
["63"] = "2"
};
public override bool TryParse(string input, out string output)
{
output = string.Empty;
Match diameter = _diameter.Match(input);
if (!diameter.Success)
{
return false;
}
Match thread = _thread.Match(input);
string threadValue;
if (!thread.Success)
{
threadValue = _defaultThreads[diameter.Groups["Diameter"].Value];
}
else
{
threadValue = thread.Groups["Thread"].Value;
}
output = $"{_title} {diameter.Groups["Diameter"]} {threadValue}";
return true;
}
}
|