-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathCSVWriter.cs
50 lines (44 loc) · 1.37 KB
/
CSVWriter.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
using System.IO;
namespace DotNetNuke.Modules.UserDefinedTable.CSV
{
public class CSVWriter
{
public static void WriteCSV(string[] data, TextWriter sw, string delimiter)
{
for (var i = 0; i <= data.Length - 1; i++)
{
sw.Write(EncodeString(data[i], delimiter));
//Not last, need a comma after
if (i != data.Length - 1)
{
sw.Write(delimiter);
}
}
sw.WriteLine("");
sw.Flush();
}
static string EncodeString(string str, string delimiter)
{
string escaped;
var commaPos = str.IndexOf(delimiter);
var returnPos = str.IndexOf('\r');
var quotePos = str.IndexOf('\u0022');
//there are both commas and quotes in string, need to escape
if (quotePos >= 0)
{
//firstly, escape quotes
escaped = str.Replace("\u0022", "\u0022\u0022");
}
else
{
escaped = str;
}
//there is comma or quote in string, need to escape
if (commaPos >= 0 || quotePos >= 0 || returnPos >= 0)
{
escaped = ('\u0022' + escaped + '\u0022');
}
return escaped;
}
}
}