2023-10-13 15:04:27 +03:00
|
|
|
|
using System.Text.RegularExpressions;
|
|
|
|
|
|
|
|
|
|
namespace RhSolutions.QueryModifiers.DrinkingWaterHeatingFittings;
|
|
|
|
|
|
|
|
|
|
public class ThreadTPieceExternal : DrinkingWaterHeatingFitting
|
|
|
|
|
{
|
2023-10-22 13:43:18 +03:00
|
|
|
|
protected override string _title => "Тройник RAUTITAN с наружной резьбой";
|
|
|
|
|
|
|
|
|
|
public override bool TryQueryModify(string input, out string output)
|
|
|
|
|
{
|
|
|
|
|
output = string.Empty;
|
|
|
|
|
MatchCollection diametersMatches = _diameter.Matches(input);
|
|
|
|
|
if (diametersMatches.Count == 0)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
string thread = _thread.Match(input).Groups["Thread"].Value;
|
|
|
|
|
int[] diameters = diametersMatches.Select(match => int.Parse(match.Groups["Diameter"].Value)).ToArray();
|
|
|
|
|
if (diameters.Length == 1)
|
|
|
|
|
{
|
|
|
|
|
output = $"{_title} {diameters[0]}-{diameters[0]}-R {thread}";
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
output = $"{_title} {diameters[0]}-{diameters[1]}-R {thread}";
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2023-10-13 15:04:27 +03:00
|
|
|
|
}
|