26 lines
928 B
C#
26 lines
928 B
C#
using System.Text.RegularExpressions;
|
||
|
||
namespace RhSolutions.QueryModifiers.DrinkingWaterHeatingFittings;
|
||
|
||
public class ThreadTPieceExternal : DrinkingWaterHeatingFitting
|
||
{
|
||
protected override string _title => "Тройник RAUTITAN с наружной резьбой";
|
||
protected override string? BuildRhSolutionsName(string query)
|
||
{
|
||
MatchCollection diametersMatches = _diameter.Matches(query);
|
||
if (diametersMatches.Count == 0)
|
||
{
|
||
return null;
|
||
}
|
||
string thread = _thread.Match(query).Groups["Thread"].Value;
|
||
int[] diameters = diametersMatches.Select(match => int.Parse(match.Groups["Diameter"].Value)).ToArray();
|
||
if (diameters.Length == 1)
|
||
{
|
||
return $"{_title} {diameters[0]}-{diameters[0]}-R {thread}";
|
||
}
|
||
else
|
||
{
|
||
return $"{_title} {diameters[0]}-{diameters[1]}-R {thread}";
|
||
}
|
||
}
|
||
} |