Github user ijokarumawak commented on a diff in the pull request:
https://github.com/apache/nifi/pull/2194#discussion_r142869799
--- Diff:
nifi-nar-bundles/nifi-poi-bundle/nifi-poi-processors/src/main/java/org/apache/nifi/processors/poi/ConvertExcelToCSVProcessor.java
---
@@ -101,6 +97,24 @@
.addValidator(StandardValidators.NON_EMPTY_VALIDATOR)
.build();
+ static final PropertyDescriptor COLUMN_DELIMITER = new
PropertyDescriptor.Builder()
+ .name("excel-csv-column-delimiter")
+ .displayName("Column Delimiter")
+ .description("Character(s) used to separate columns of data in
the CSV file. Special characters should use the '\\u' notation.")
+ .required(false)
+ .addValidator(StandardValidators.NON_EMPTY_VALIDATOR)
+ .defaultValue(",")
+ .build();
--- End diff --
Is there any reason that we don't support EL here?
---