-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Excel export format for CSV is based on the document locale. For some locales such as French/France, semicolon is used as the delimiter.
- Loading branch information
1 parent
fae6c7c
commit d176628
Showing
4 changed files
with
47 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,5 @@ C,c | |
AA,aa,a | ||
AB,ab,a | ||
AC | ||
"121 Main St, NE", main, m | ||
"121 Main St, NE",main,m | ||
"text; more text",foo,bar |
9 changes: 9 additions & 0 deletions
9
src/test/resources/org/javarosa/core/model/instance/external-secondary-semicolon-complex.csv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
"label";"name";"first" | ||
"A";"a"; | ||
B;b; | ||
C;c | ||
AA;aa;a | ||
AB;ab;a | ||
AC | ||
"121 Main St, NE";main;m | ||
"text; more text";foo;bar |