File tree 2 files changed +8
-3
lines changed
csv/src/main/java/com/fasterxml/jackson/dataformat/csv 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -73,10 +73,13 @@ public enum Feature
73
73
ALWAYS_QUOTE_EMPTY_STRINGS (false ),
74
74
75
75
/**
76
- * Feature that determines whether values written Strings (from <code>java.lang.String</code>
77
- * valued POJO properties) which contains quotes be escaped using the Schema's configured escape character instead of "".
76
+ * Feature that determines whether quote characters within quoted String values are escaped
77
+ * using configured escape character, instead of being "doubled up" (that is: a quote character
78
+ * is written twice in a row).
79
+ *<p>
80
+ * Default value is false so that quotes are doubled as necessary, not escaped.
78
81
*
79
- * @since 2.9
82
+ * @since 2.9.3
80
83
*/
81
84
ESCAPE_QUOTE_CHAR_WITH_ESCAPE_CHAR (false )
82
85
;
Original file line number Diff line number Diff line change @@ -10,6 +10,8 @@ Modules:
10
10
11
11
2.9.3 (not yet released)
12
12
13
+ #42 (csv): Add support for escaping double quotes with the configured escape character
14
+ (contributed by frankgrimes97@github)
13
15
#51 (csv): Set of custom objects with `IGNORE_UNKNOWN` brokes silently csv
14
16
(reported by Simone L)
15
17
You can’t perform that action at this time.
0 commit comments