String MeshWorkflowOutput.LabelsExcludeFilter { get; set; }
Gets or sets the regular expression to match all labels that are excluded from the transfer. The exclude match removes also labels matching the include pattern. Applies when "TransferLabelsAsNamedSelections" is True.
Examples
"""The filter regular expressions support the same grammar as the scope pattern expressions, a few typical examples:"""
'abc.*' matches all names starting with 'abc'.
'.*abc.*' matches all names containing 'abc'.
'.*abc|.*xyz' matches all names ending with 'abc' or 'xyz'.
More complex expressions, following the regular expressions grammar, are supported.