Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support escaping delimiter with a definable character #25

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Commits on Mar 26, 2021

  1. * CsvReaderFixture.cs: Tests for values using an escape character

      for escaping the value delimiter rather than the delimiter value
      appearing twice.
    
    * CsvReader.cs: Support passing the EscapeCharacter down to the
      CsvParser.
    
    * CsvParser.cs:
    * CsvParser_Async.cs: Added property to specify an escape character to
      use for handling the delimiter character appearing within the value.
      When specified this character will act as an escape character rather
      than needing to have the delimiter character twice. e.g. setting \
      as the escape character would support escaping values like "some
      \"quoted\" text" rather than "some ""quoted"" text".
    DaveakX committed Mar 26, 2021
    Configuration menu
    Copy the full SHA
    eaf9f0e View commit details
    Browse the repository at this point in the history
  2. Fix documentation comment.

    DaveakX committed Mar 26, 2021
    Configuration menu
    Copy the full SHA
    9d65b79 View commit details
    Browse the repository at this point in the history
  3. Another comment tweak

    DaveakX committed Mar 26, 2021
    Configuration menu
    Copy the full SHA
    a3d715b View commit details
    Browse the repository at this point in the history