leehaut opened a new pull request, #8275:
URL: https://github.com/apache/hop/pull/8275

   Fix https://github.com/apache/hop/issues/8266
   
   ## Summary
   - Add an Enclosure option to Split field to rows so delimiters inside quoted 
values are not treated as split points.
   - Enclosure characters are removed from the output. Example: `hi,"hello, 
world","hey"` becomes `hi`, `hello, world`, `hey`.
   - The option is ignored when the delimiter is a regular expression.
   
   ## Test plan
   - [x] Run `hi,"hello, world","hey"` with delimiter `,` and enclosure `"` and 
confirm 3 rows: `hi` / `hello, world` / `hey`
   - [x] Run `a,b,c` without enclosure and confirm the old 3-row split still 
works
   - [x] Unit tests: `SplitFieldToRowsTest`, `SplitFieldToRowsMetaTest`
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to