Hi Pawel / Wojtek,
Thanks Pawel for your explanation above, but unfortunately I'm still none the wiser. Perhaps it's just me
but are you able to complete the following table of examples and I'll work out an explanation to describe this change in CSV parsing behaviour in our docco:
In CSV file (i.e. the input file) |
What JIRA's new CSV parser converts this to: |
C:\Program Files |
C:rogram Files |
C:\\Program Files |
C:Program Files |
'C:\Program Files' |
'C:rogram Files' |
'C:\\Program Files' |
'C:Program Files' |
"C:\Program Files" |
C:rogram Files |
"C:\\Program Files" |
C:\Program Files |
C:'\'Program Files |
C:'Program Files |
C:'\\'Program Files |
C:''Program Files |
C:"\"Program Files |
Invalid line, there's an opening double-quote without a closing one. |
C:"\\"Program Files |
C:\"Program Files |
As you can see in the left column above, if you need to display two backslashes inside JIRA comments (i.e. without JIRA interpreting this as a 'new line' character), insert
between the two backslashes, that is...
Just to be clear, this is for JIRA 4.4.4 onwards.