Rust
Rust
CSV Get Contents of Cell
Demonstrates the GetCell method (to get the contents of a cell by row/column index).Chilkat Rust Downloads
// We have the following CSV...
// permalink,company,numEmps,category,city,state,fundedDate,raisedAmt,raisedCurrency,round
// lifelock,LifeLock,,web,Tempe,AZ,1-May-07,6850000,USD,b
// mycityfaces,MyCityFaces,7,web,Scottsdale,AZ,1-Jan-08,50000,USD,seed
// flypaper,Flypaper,,web,Phoenix,AZ,1-Feb-08,3000000,USD,a
// infusionsoft,Infusionsoft,105,software,Gilbert,AZ,1-Oct-07,9000000,USD,a
// gauto,gAuto,4,web,Scottsdale,AZ,1-Jan-08,250000,USD,seed
let b_crlf = true;
let sb = chilkat::StringBuilder::new();
let _ = sb.append_line("permalink,company,numEmps,category,city,state,fundedDate,raisedAmt,raisedCurrency,round", b_crlf);
let _ = sb.append_line("lifelock,LifeLock,,web,Tempe,AZ,1-May-07,6850000,USD,b", b_crlf);
let _ = sb.append_line("mycityfaces,MyCityFaces,7,web,Scottsdale,AZ,1-Jan-08,50000,USD,seed", b_crlf);
let _ = sb.append_line("flypaper,Flypaper,,web,Phoenix,AZ,1-Feb-08,3000000,USD,a", b_crlf);
let _ = sb.append_line("infusionsoft,Infusionsoft,105,software,Gilbert,AZ,1-Oct-07,9000000,USD,a", b_crlf);
let _ = sb.append_line("gauto,gAuto,4,web,Scottsdale,AZ,1-Jan-08,250000,USD,seed", b_crlf);
let csv = chilkat::Csv::new();
// Indicate that the 1st line contains column names.
csv.set_has_column_names(true);
let _ = csv.load_from_string(&sb.get_as_string().unwrap_or_default()).is_ok();
// Get the contents of the cell at row 2 column 5, which is "Scottsdale".
// Indexes are 0-based. The 2nd row is at index 1, and the 5th column is at index 4.
// (The row of column names is not a data row.)
let cell_content = csv.get_cell(1, 4).unwrap_or_default();
println!("{}", cell_content);
// Output should be "Scottsdale".