Revert error replace value to "0"

This commit is contained in:
Jonathan Jenne 2021-10-19 13:31:43 +02:00
parent 6815b332e7
commit 2e7633824b

View File

@ -48,7 +48,12 @@ Public Class clsPatterns
Public Const INT_VALUE_DATE = "DATE"
Public Const MAX_TRY_COUNT = 50
Public Const ERROR_REPLACE_VALUE = "[Replace Error]"
''' <summary>
''' This value will be valid as any datatype,
''' and you can easily check against it
''' </summary>
Public Const ERROR_REPLACE_VALUE = "0"
Private Shared ReadOnly MyRegex As Regex = New Regex("{#(\w+)#([\:\.\w\s_-]+)}+")
Private Shared ReadOnly allPatterns As New List(Of String) From {PATTERN_WMI, PATTERN_CTRL, PATTERN_IDBA, PATTERN_USER, PATTERN_INT}