|
5 | 5 | ## Requirement |
6 | 6 | :cloud: ABAP for Cloud Development edition |
7 | 7 |
|
| 8 | +Looking for *On-Premise* edition? Switch to *onprem-main* branch. |
| 9 | + |
8 | 10 | ## Quick Start |
9 | 11 |
|
10 | 12 | :office_worker: **I need to read a CSV, how can I do it?** |
@@ -87,14 +89,14 @@ csv_reader->detranspose( EXPORTING i_transposed = csv_tab_t IMPORTING e_table = |
87 | 89 | - ``csv_man->quotechar( `"` ).`` *to quote fields, default is none. |
88 | 90 | - ``csv_man->end_of_line( `|` ).`` *line-terminator char, default is Carriage Return and Line Feed* `%_CR_LF` *.* |
89 | 91 | - ``csv_man->escapechar( `/` ).`` *to escape special characters, both in read and write mode.* |
90 | | -- ``csv_man->doublequote( abap_true ).`` *to escape a quotechar character with a quotechar character.* |
| 92 | +- ``csv_man->doublequote( ).`` *to escape a quotechar character with a quotechar character.* |
91 | 93 | - `csv_man->quoting( ztbox_cl_csvman=>c_quote_minimal ).` *to restrict quoting application, with these options:* |
92 | 94 | - `zcl_tbox_csv_writer=>c_quote_all` *to apply quotechar character to all fields (this is default behaviour if a quotechar is set);* |
93 | 95 | - `zcl_tbox_csv_writer=>c_quote_minimal` *to apply quotechar character only to fields containing special characters;* |
94 | 96 | - `zcl_tbox_csv_writer=>c_quote_nonnumeric` *to apply quotechar character only to non-numeric fields;* |
95 | 97 | - `zcl_tbox_csv_writer=>c_quote_none` *to never quote fields (this is the default behaviour if no quotechar is set).* |
96 | | -- `csv_man->header( abap_true ).` *to write/expect an header line in write/read mode. Default is* `abap_true` *.* |
97 | | -- `csv_man->header_desc( abap_true ).` *to use field name as header text field. You can column text by calling* `->label( )` *method on fields level, see below for details.* |
| 98 | +- `csv_man->header( ).` *to write/expect an header line in write/read mode. Default is* `abap_true` *.* |
| 99 | +- `csv_man->header_desc( ).` *to use field name as header text field. You can column text by calling* `->label( )` *method on fields level, see below for details.* |
98 | 100 |
|
99 | 101 | ## Output Format |
100 | 102 | :office_worker: **Nice, but I want also control fields output format, especially for date/time/numeric fields.** |
|
0 commit comments