-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCSVQUOTE.PAS
167 lines (160 loc) · 3.71 KB
/
CSVQUOTE.PAS
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
{ @author: Sylvain Maltais (support@gladir.com)
@created: 2023
@website(https://www.gladir.com/csv-tools)
@abstract(Target: Turbo Pascal 7, Free Pascal 3.2)
}
Program CSVQUOTE(Input,Output);
Uses DOS;
Var
SourceCSV,TargetCSV:Text;
CurrLine,CurrWord,CurrField,TableName,FileName,TFileName:String;
I:Integer;
InQuote:Boolean;
Function Path2Name(S:String):String;
Var
D:DirStr;
N:NameStr;
E:ExtStr;
Begin
FSplit(S,D,N,E);
Path2Name:=N;
End;
Function Path2Ext(S:String):String;
Var
D:DirStr;
N:NameStr;
E:ExtStr;
Begin
FSplit(S,D,N,E);
Path2Ext:=E;
End;
Function StringToSQLString(Source:String):String;
Var
I:Integer;
ConvStr:String;
Begin
ConvStr:='';
For I:=1 to Length(Source)do Begin
If Source[I]=''''Then ConvStr:=ConvStr+''''+'''';
ConvStr:=ConvStr+Source[I];
End;
StringToSQLString:=ConvStr;
End;
BEGIN
If(ParamStr(1)='/?')or(ParamStr(1)='--help')or(ParamStr(1)='-h')or
(ParamStr(1)='/h')or(ParamStr(1)='/H')Then Begin
WriteLn('CSVQUOTE : Cette commande permet d''enlever les sauts de ',
'lignes dans les champs entre guillemets.');
WriteLn;
WriteLn('Syntaxe : CSVQUOTE source.CSV [target.CSV]');
WriteLn;
WriteLn(' source.CSV Nom du fichier a convertir');
WriteLn(' target.CSV Nom du fichier convertie');
WriteLn;
End
Else
Begin
InQuote:=False;
If ParamCount>0Then Begin
TableName:=Path2Name(ParamStr(1));
FileName:=FExpand(ParamStr(1));
If Path2Ext(FileName)=''Then FileName:=FileName+'.CSV';
Assign(SourceCSV,FileName);
{$I-}Reset(SourceCSV);{$I+}
If IoResult<>0Then Begin
WriteLn('Fichier CSV introuvable !');
Halt;
End;
If ParamStr(2)=''Then Begin
CurrWord:='';
While Not EOF(SourceCSV)do Begin
ReadLn(SourceCSV,CurrLine);
For I:=1 to Length(CurrLine)do Begin
If CurrLine[I]=','Then Begin
Write(CurrWord,',');
CurrWord:='';
End
Else
If CurrLine[I]='"'Then Begin
InQuote:=Not(InQuote);
CurrWord:=CurrWord+CurrLine[I];
End
Else
Begin
CurrWord:=CurrWord+CurrLine[I];
End;
End;
If Not(InQuote)Then Begin
WriteLn(CurrWord);
CurrWord:='';
End;
End;
If CurrWord<>''Then WriteLn(CurrWord);
Close(SourceCSV);
End
Else
Begin
TFileName:=FExpand(ParamStr(2));
If Path2Ext(TFileName)=''Then TFileName:=TFileName+'.SQL';
Assign(TargetCSV,TFileName);
{$I-}Rewrite(TargetCSV); {$I+}
If IoResult<>0Then Begin
WriteLn('Impossible de cr‚er le fichier SQL ',TFileName,' !');
Close(SourceCSV);
Halt;
End;
While Not EOF(SourceCSV)do Begin
ReadLn(SourceCSV,CurrLine);
For I:=1 to Length(CurrLine)do Begin
If CurrLine[I]=','Then Begin
Write(TargetCSV,CurrWord,',');
CurrWord:='';
End
Else
If CurrLine[I]='"'Then Begin
InQuote:=Not(InQuote);
CurrWord:=CurrWord+CurrLine[I];
End
Else
Begin
CurrWord:=CurrWord+CurrLine[I];
End;
End;
If Not(InQuote)Then Begin
WriteLn(TargetCSV,CurrWord);
CurrWord:='';
End
End;
if CurrWord<>''Then WriteLn(TargetCSV,CurrWord);
Close(TargetCSV);
Close(SourceCSV);
End;
End
Else
Begin
While Not EOF do Begin
ReadLn(Input,CurrLine);
For I:=1 to Length(CurrLine)do Begin
If CurrLine[I]=','Then Begin
Write(CurrWord,',');
CurrWord:='';
End
Else
If CurrLine[I]='"'Then Begin
InQuote:=Not(InQuote);
CurrWord:=CurrWord+CurrLine[I];
End
Else
Begin
CurrWord:=CurrWord+CurrLine[I];
End;
End;
If Not(InQuote)Then Begin
WriteLn(CurrWord);
CurrWord:='';
End;
End;
If CurrWord<>''Then WriteLn(CurrWord);
End;
End;
END.