Skip to content

Multiline string without text in new line #8

@xelan

Description

@xelan

Hi!

If I try to process a multiline string which doesn't have text after the line break, the strings content gets lost instead of being parsed correctly.

CSV example

"Column 1"|"Column 2
"|"Column 3"

Expected output

 array(
  0 => array(
    0 => 'Column 1',
    1 => 'Column 2
',
    2 => 'Column 3'
  )

Actual output

array(
  0 => array(
    0 => 'Column 1',
    1 => '',
    2 => 'Column 3'
  )
)

Thank you very much!

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions