Initializes a new instance of RegexParameters. This is a copy constructor.
public RegexParameters(
RegexParameters r
)
r
RegexParameters to copy from.
Regex parameters cannot act on their own. When they are made, they need to be added to the RegexParameter list in the matching RegexInspectorElement.
Adding a regex parameter to find one or more capital letters, a space, then one or more capital letters.
using Leadtools;
using Leadtools.Document.Unstructured;
using Leadtools.Document.Analytics;
using Leadtools.Document.Unstructured.Highlevel;
using Leadtools.Ocr;
using Leadtools.Document;
public void DocumentUnstructuredRegexParametersExample()
{
var r1 = new RegexInspectorElement()
{
Id = "r1",
IncludeWholeWord = true,
IncludeWholeLine = false
};
r1.RegexParameters.Add(new RegexParameters()
{
Pattern = @"[A-Z]{1,}\s[A-Z]{1,}",
PatternIsOEM = false,
IgnoreSpaces = false,
IgnoreCase = false,
ApproximateRegexMode = ApproximateRegexMode.Disabled,
UseLettersToNumbersMapping = false,
AllowSubWordsMatching = true,
MinimumLength = 1,
MaximumCost = 0
});
}