You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/examples/exportation-examples.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ nav_order: 2
18
18
19
19
## Export data to a CSV file
20
20
21
-
The [EXAMPLE1] shows how you can export all the data in VBA array to a CSV file using the RFC-4180 standard as paramount.
21
+
The [EXAMPLE1] shows how you can export all the data in VBA array to a CSV file using the RFC-4180 specs as paramount.
22
22
23
23
#### [EXAMPLE1]
24
24
>📝**Note**
@@ -51,7 +51,7 @@ End Sub
51
51
52
52
## Export to a CSV file without special syntax
53
53
54
-
The [EXAMPLE2] shows how you can export all the data in VBA array to a CSV file without check the RFC-4180 standard’s rules. Be careful, use this only if the array doesn't hold especial chars (vbCrLf [vbCr, vbLf], comma [semicolon], double quotes[apostrophe]) in neither of its fields. The output CSV file has neither field needing to be escaped.
54
+
The [EXAMPLE2] shows how you can export all the data in VBA array to a CSV file without check the RFC-4180 specs rules. Be careful, use this only if the array doesn't hold especial chars (vbCrLf [vbCr, vbLf], comma [semicolon], double quotes[apostrophe]) in neither of its fields. The output CSV file has neither field needing to be escaped.
The [EXAMPLE3] shows how you can export all the data in VBA array to a CSV file without check the RFC-4180 standard’s rules. Each field CSV of the output file need to be escaped by desired char. The procedure presented in the [EXAMPLE3] can be used in whatever circumstance.
89
+
The [EXAMPLE3] shows how you can export all the data in VBA array to a CSV file without check the RFC-4180 specs rules. Each field CSV of the output file need to be escaped by desired char. The procedure presented in the [EXAMPLE3] can be used in whatever circumstance.
Copy file name to clipboardExpand all lines: docs/examples/importation-examples.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ nav_order: 1
18
18
19
19
## Import CSV file data
20
20
21
-
The [EXAMPLE1] shows how you can import all the data from a CSV file using the RFC-4180 standard as paramount.
21
+
The [EXAMPLE1] shows how you can import all the data from a CSV file using the RFC-4180 specs as paramount.
22
22
23
23
#### [EXAMPLE1]
24
24
>📝**Note**
@@ -43,7 +43,7 @@ End Sub
43
43
44
44
## Import top 10 records from a CSV file into a VBA array
45
45
46
-
The [EXAMPLE2] shows how you can import the Top 10 records from a CSV file using the RFC-4180 standard as paramount.
46
+
The [EXAMPLE2] shows how you can import the Top 10 records from a CSV file using the RFC-4180 specs as paramount.
47
47
48
48
#### [EXAMPLE2]
49
49
>📝**Note**
@@ -91,7 +91,7 @@ End Sub
91
91
```
92
92
93
93
## Import ten middle records from a CSV file into a VBA array
94
-
The [EXAMPLE4] shows how you can import 10 middle records from a CSV file using the RFC-4180 standard as paramount.
94
+
The [EXAMPLE4] shows how you can import 10 middle records from a CSV file using the RFC-4180 specs as paramount.
95
95
96
96
#### [EXAMPLE4]
97
97
>📝**Note**
@@ -118,9 +118,9 @@ End Sub
118
118
119
119
## Import CSV file that haven’t special syntax
120
120
121
-
This is the fastest way to work with CSV files because the CSV interface class don't check the syntax given at the RFC-4180 standard. If your CSV files has trailing spaces, or you don't know if it holds a field needing to be escaped, please [reset the config options](https://ws-garcia.github.io/VBA-CSV-interface/api/methods/resettodefault.html) for the current instance to avoid incorrect results.
121
+
This is the fastest way to work with CSV files because the CSV interface class don't check the syntax given at the RFC-4180 specs. If your CSV files has trailing spaces, or you don't know if it holds a field needing to be escaped, please [reset the config options](https://ws-garcia.github.io/VBA-CSV-interface/api/methods/resettodefault.html) for the current instance to avoid incorrect results.
122
122
123
-
The [EXAMPLE5] shows how you can import all the data from a CSV file without checking the syntax given at the RFC-4180 standard. The file to be parsed has neither field needing to be escaped.
123
+
The [EXAMPLE5] shows how you can import all the data from a CSV file without checking the syntax given at the RFC-4180 specs. The file to be parsed has neither field needing to be escaped.
The [EXAMPLE7] shows how you can import all the data from a CSV file without checking the syntax given at the RFC-4180 standard. In the file to be parsed, all fields need to be escaped.
164
+
The [EXAMPLE7] shows how you can import all the data from a CSV file without checking the syntax given at the RFC-4180 specs. In the file to be parsed, all fields need to be escaped.
0 commit comments