blob: 3600cc8ca34d8493655492056c6f7ba85b40e6ad (
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
39
40
41
42
43
44
45
46
47
48
49
|
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;
MatchCollection diameters = _diameter.Matches(input);
if (diameters.Count < 1)
{
return false;
}
Match thread = _thread.Match(input);
string threadValue;
if (!thread.Success && diameters.Count >= 2)
{
var diameterThread = diameters[1].Groups["Diameter"];
threadValue = diameterThread.Value switch
{
"15" => "1/2",
"20" => "3/4",
"25" => "1",
_ => string.Empty
};
}
else if (!thread.Success)
{
threadValue = _defaultThreads[diameters[0].Groups["Diameter"].Value];
}
else
{
threadValue = thread.Groups["Thread"].Value;
}
output = $"{_title} {diameters[0].Groups["Diameter"]} {threadValue}";
return true;
}
}
|