Property DisableSpacingCharacters
- Namespace
- LMKit.Extraction
- Assembly
- LM-Kit.NET.dll
DisableSpacingCharacters
Gets or sets a value indicating whether spacing characters (spaces, tabs, newlines) should be removed from the extracted text.
public bool DisableSpacingCharacters { get; set; }Property Value
Examples
var id = new TextExtractionElement("CustomerId", ElementType.String);
id.Format.DisableSpacingCharacters = true; // "AB 12 34" -> "AB1234"Remarks
Only applicable when ElementType is String or StringArray.
In JSON: use the "disableSpacingCharacters" boolean property.