Merge pull request #13 from kenahoo/patch-1

Tell the user what the default quote/escape/sep characters are
master
Larry Ogrodnek 2014-02-18 20:10:23 -08:00
commit f315c1ae4b
1 changed files with 9 additions and 1 deletions

View File

@ -20,6 +20,14 @@ create table my_table(a string, b string, ...)
### Custom formatting
The default separator, quote, and escape characters from the `opencsv` library are:
```
DEFAULT_ESCAPE_CHARACTER \
DEFAULT_QUOTE_CHARACTER "
DEFAULT_SEPARATOR ,
```
You can also specify custom separator, quote, or escape characters.
```
@ -54,4 +62,4 @@ Run `mvn eclipse:eclipse` to generate `.project` and `.classpath` files for ecli
## License
csv-serde is open source and licensed under the [Apache 2 License](http://www.apache.org/licenses/LICENSE-2.0.html).
csv-serde is open source and licensed under the [Apache 2 License](http://www.apache.org/licenses/LICENSE-2.0.html).