Skip to content

Commit

Permalink
Merge pull request #12 from gexclaude/gexclaude-readme-code-example-fix
Browse files Browse the repository at this point in the history
minor fix code example in README.md
  • Loading branch information
vincentlaucsb authored Aug 31, 2018
2 parents c7db8bc + 1a3f2f6 commit 95f56ca
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,18 +180,18 @@ using namespace csv;
...
// Method 1: Using parse()
std::string csv_string = "Actor,Character"
std::string csv_string = "Actor,Character\r\n"
"Will Ferrell,Ricky Bobby\r\n"
"John C. Reilly,Cal Naughton Jr.\r\n"
"Sacha Baron Cohen,Jean Giard\r\n"
"Sacha Baron Cohen,Jean Giard\r\n";
auto rows = parse(csv_string);
for (auto& r: rows) {
// Do stuff with row here
}
// Method 2: Using _csv operator
auto rows = "Actor,Character"
auto rows = "Actor,Character\r\n"
"Will Ferrell,Ricky Bobby\r\n"
"John C. Reilly,Cal Naughton Jr.\r\n"
"Sacha Baron Cohen,Jean Giard\r\n"_csv;
Expand Down

0 comments on commit 95f56ca

Please sign in to comment.