Sample code for 30+ languages & platforms
Rust

CSV Get Contents of Cell using Row Index and Column Name

Demonstrates the GetCellByName method.

Chilkat Rust Downloads

Rust

// 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();

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 for the "city" column, which is "Scottsdale".
// Indexes are 0-based.  The 2nd row is at index 14.
// (The row of column names is not a data row.)
let cell_content = csv.get_cell_by_name(1, "city").unwrap_or_default();
println!("{}", cell_content);

// Output should be "Scottsdale".