@@ -22,10 +22,10 @@ Example Usage
2222=============
2323Here is a simple example reading a CSV file and getting 'Close' column as a vector of floats.
2424
25- https://github.com/panchaBhuta/rapidcsv_FilterSort/blob/d20ff599ef09a677aecdc8eeaf4c35cb90710258 /examples/colhdr.csv#L1-L6
25+ https://github.com/panchaBhuta/rapidcsv_FilterSort/blob/v3.3.0 /examples/colhdr.csv#L1-L6
2626
2727
28- https://github.com/panchaBhuta/rapidcsv_FilterSort/blob/d20ff599ef09a677aecdc8eeaf4c35cb90710258 /examples/ex001.cpp#L1-L12
28+ https://github.com/panchaBhuta/rapidcsv_FilterSort/blob/v3.3.0 /examples/ex001.cpp#L1-L12
2929
3030
3131
@@ -111,28 +111,28 @@ as row headers one needs to use LabelParams and set pRowNameIdx to 0.
111111### Column and Row Headers
112112csv file with both column and row headers
113113
114- https://github.com/panchaBhuta/rapidcsv_FilterSort/blob/d20ff599ef09a677aecdc8eeaf4c35cb90710258 /examples/colrowhdr.csv#L1-L6
114+ https://github.com/panchaBhuta/rapidcsv_FilterSort/blob/v3.3.0 /examples/colrowhdr.csv#L1-L6
115115
116116
117- https://github.com/panchaBhuta/rapidcsv_FilterSort/blob/d20ff599ef09a677aecdc8eeaf4c35cb90710258 /examples/ex002.cpp#L1-L16
117+ https://github.com/panchaBhuta/rapidcsv_FilterSort/blob/v3.3.0 /examples/ex002.cpp#L1-L16
118118
119119
120120### Row Headers Only
121121csv file with row header; i.e. no column header<br >
122122
123- https://github.com/panchaBhuta/rapidcsv_FilterSort/blob/d20ff599ef09a677aecdc8eeaf4c35cb90710258 /examples/rowhdr.csv#L1-L6
123+ https://github.com/panchaBhuta/rapidcsv_FilterSort/blob/v3.3.0 /examples/rowhdr.csv#L1-L6
124124
125125
126- https://github.com/panchaBhuta/rapidcsv_FilterSort/blob/d20ff599ef09a677aecdc8eeaf4c35cb90710258 /examples/ex003.cpp#L1-L13
126+ https://github.com/panchaBhuta/rapidcsv_FilterSort/blob/v3.3.0 /examples/ex003.cpp#L1-L13
127127
128128
129129### No Headers
130130csv file with no column and row headers
131131
132- https://github.com/panchaBhuta/rapidcsv_FilterSort/blob/d20ff599ef09a677aecdc8eeaf4c35cb90710258 /examples/nohdr.csv#L1-L5
132+ https://github.com/panchaBhuta/rapidcsv_FilterSort/blob/v3.3.0 /examples/nohdr.csv#L1-L5
133133
134134
135- https://github.com/panchaBhuta/rapidcsv_FilterSort/blob/d20ff599ef09a677aecdc8eeaf4c35cb90710258 /examples/ex004.cpp#L1-L15
135+ https://github.com/panchaBhuta/rapidcsv_FilterSort/blob/v3.3.0 /examples/ex004.cpp#L1-L15
136136
137137
138138Reading a File with Custom Separator
@@ -141,10 +141,10 @@ For reading of files with custom separator (i.e. not comma), one need to
141141specify the SeparatorParams argument. The following example reads a file using
142142semi-colon as separator.
143143
144- https://github.com/panchaBhuta/rapidcsv_FilterSort/blob/d20ff599ef09a677aecdc8eeaf4c35cb90710258 /examples/semi.csv#L1-L6
144+ https://github.com/panchaBhuta/rapidcsv_FilterSort/blob/v3.3.0 /examples/semi.csv#L1-L6
145145
146146
147- https://github.com/panchaBhuta/rapidcsv_FilterSort/blob/d20ff599ef09a677aecdc8eeaf4c35cb90710258 /examples/ex005.cpp#L1-L16
147+ https://github.com/panchaBhuta/rapidcsv_FilterSort/blob/v3.3.0 /examples/ex005.cpp#L1-L16
148148
149149
150150
@@ -154,10 +154,10 @@ The internal cell representation in the Document class is using std::string
154154and when other types are requested, [ converter] ( https://github.com/panchaBhuta/converter/tree/main#supported-data-types-for-conversion ) routines are used.
155155The following example illustrates the supported data types.
156156
157- https://github.com/panchaBhuta/rapidcsv_FilterSort/blob/d20ff599ef09a677aecdc8eeaf4c35cb90710258 /examples/colrowhdr.csv#L1-L6
157+ https://github.com/panchaBhuta/rapidcsv_FilterSort/blob/v3.3.0 /examples/colrowhdr.csv#L1-L6
158158
159159
160- https://github.com/panchaBhuta/rapidcsv_FilterSort/blob/d20ff599ef09a677aecdc8eeaf4c35cb90710258 /examples/ex006.cpp#L1-L21
160+ https://github.com/panchaBhuta/rapidcsv_FilterSort/blob/v3.3.0 /examples/ex006.cpp#L1-L21
161161
162162
163163### ** std::chrono::year_month_day** is the ` Date ` type used
@@ -190,7 +190,7 @@ Global Custom Data Type Conversion
190190One may override conversion routines (or add new ones) by implementing converter function ToVal() or ToStr(). Below is an example of int conversion, to instead provide two decimal fixed-point numbers. Also see [ tests/test035.cpp] ( tests/test035.cpp ) .
191191
192192
193- https://github.com/panchaBhuta/rapidcsv_FilterSort/blob/d20ff599ef09a677aecdc8eeaf4c35cb90710258 /examples/ex008.cpp#L1-L19
193+ https://github.com/panchaBhuta/rapidcsv_FilterSort/blob/v3.3.0 /examples/ex008.cpp#L1-L19
194194
195195
196196Custom Data Type Conversion Per Call
@@ -200,7 +200,7 @@ It is also possible to override conversions on a per-call basis, enabling more f
200200[ tests/test087.cpp] ( tests/test087.cpp ) and
201201[ tests/test092.cpp] ( tests/test092.cpp )
202202
203- https://github.com/panchaBhuta/rapidcsv_FilterSort/blob/d20ff599ef09a677aecdc8eeaf4c35cb90710258 /examples/ex009.cpp#L1-L43
203+ https://github.com/panchaBhuta/rapidcsv_FilterSort/blob/v3.3.0 /examples/ex009.cpp#L1-L43
204204
205205
206206Reading CSV Data from a Stream or String
@@ -210,7 +210,7 @@ from a stream and, indirectly through stringstream, from a string. File streams
210210used with rapidcsv should be opened in ` std::ios::binary ` mode to enable full
211211functionality. Here is a simple example reading CSV data from a string:
212212
213- https://github.com/panchaBhuta/rapidcsv_FilterSort/blob/d20ff599ef09a677aecdc8eeaf4c35cb90710258 /examples/ex007.cpp#L1-L25
213+ https://github.com/panchaBhuta/rapidcsv_FilterSort/blob/v3.3.0 /examples/ex007.cpp#L1-L25
214214
215215Check if a Column Exists
216216------------------------
@@ -281,7 +281,7 @@ Refer [test091.cpp](tests/test091.cpp), to see the effect of lowered Decimal-Pr
281281
282282One can also provide their own decimal precision parameter thru several ways. This is illustrated in the example [ exConv001.cpp] ( examples/exConv001.cpp ) , where data conversion precision is checked by implementing a complete conversion cycle i.e ** data -> string -> data** .<br >
283283
284- https://github.com/panchaBhuta/rapidcsv_FilterSort/blob/d20ff599ef09a677aecdc8eeaf4c35cb90710258 /examples/exConv001.cpp#L1-L166
284+ https://github.com/panchaBhuta/rapidcsv_FilterSort/blob/v3.3.0 /examples/exConv001.cpp#L1-L166
285285
286286
287287Locale Parsing Formats : String-to-T (i.e S2T)
0 commit comments