Fix pipe type pattern
This commit is contained in:
parent
60fbfb5e8c
commit
bc2ddd3151
@ -9,7 +9,7 @@ public class DrinkingWaterHeatingPipe : IProductQueryModifier
|
|||||||
protected static readonly Regex _diameter =
|
protected static readonly Regex _diameter =
|
||||||
new(@"([\b\D]|^)?(?<Diameter>16|20|25|32|40|50|63)([\b\D]|$)");
|
new(@"([\b\D]|^)?(?<Diameter>16|20|25|32|40|50|63)([\b\D]|$)");
|
||||||
protected static readonly Regex _type =
|
protected static readonly Regex _type =
|
||||||
new(@"([\b\W])(?<Type>бухт|отр|штанг)([\b\w.])");
|
new(@"([\b\W])(?<Type>бухт|отр|штанг)([\b\w\.\s])");
|
||||||
protected virtual string _title { get; } = string.Empty;
|
protected virtual string _title { get; } = string.Empty;
|
||||||
|
|
||||||
protected virtual Dictionary<int, string> _diameterNames { get; } = new()
|
protected virtual Dictionary<int, string> _diameterNames { get; } = new()
|
||||||
|
Loading…
Reference in New Issue
Block a user