gitlab.com/evatix-go/core@v1.3.55/regexnew/regexes-compiled.go (about) 1 package regexnew 2 3 import ( 4 "gitlab.com/evatix-go/core/regconsts" 5 ) 6 7 var ( 8 WhitespaceFinderRegex = New.Lazy(regconsts.AllWhitespaces) 9 HashCommentWithSpaceOptionalRegex = New.Lazy(regconsts.HashCommentWithSpaceOptional) 10 WhitespaceOrPipeFinderRegex = New.Lazy(regconsts.AllWhitespacesOrPipe) 11 DollarIdentifierRegex = New.Lazy(regconsts.EachWordsWithDollarSymbolDefinition) 12 PercentIdentifierRegex = New.Lazy(regconsts.EachWordsWithinPercentSymbolDefinition) 13 PrettyNameRegex = New.Lazy(regconsts.PrettyName) 14 ExactIdFieldMatchingRegex = New.Lazy(regconsts.ExactIdFieldMatching) 15 ExactVersionIdFieldMatchingRegex = New.Lazy(regconsts.ExactVersionIdFieldMatching) 16 UbuntuNameCheckerRegex = New.Lazy(regconsts.UbuntuNameChecker) 17 CentOsNameCheckerRegex = New.Lazy(regconsts.CentOsNameChecker) 18 RedHatNameCheckerRegex = New.Lazy(regconsts.RedHatNameChecker) 19 FirstNumberAnyWhereCheckerRegex = New.Lazy(regconsts.FirstNumberAnyWhere) 20 WindowsVersionNumberCheckerRegex = FirstNumberAnyWhereCheckerRegex 21 )