We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a7a6a5 commit 7788b30Copy full SHA for 7788b30
1 file changed
README.md
@@ -182,8 +182,8 @@ Notice that it's possible to customize the quote char as shown in [this section]
182
Example:
183
```cpp
184
char * csv_str = " test a , test b \n" // header names include leading and trailing spaces
185
- "1,2\n"
186
- "3,4\n";
+ "1,2\n"
+ "3,4\n";
187
188
CSV_Parser cp(csv_str, "cc");
189
int8_t *a = (int8_t*)cp["test a"]; // notice how "test a" is used instead of " test a "
@@ -298,4 +298,4 @@ I wanted to parse [covid-19 csv](https://github.com/tomwhite/covid-19-uk-data) d
298
299
300
## Documentation
301
-https://michalmonday.github.io/CSV-Parser-for-Arduino/index.html
+https://michalmonday.github.io/CSV-Parser-for-Arduino/index.html
0 commit comments