Rust
Rust
CSV Delete Row
Demonstrates the DeleteRow method.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();
// Delete the 2nd row, which is the row for "mycityfaces".
// The 0'th row is the 1st data row.
// The row at index 1 is the 2nd data row.
let _ = csv.delete_row(1).is_ok();
println!("{}", csv.save_to_string().unwrap_or_default());
// Output is:
// permalink,company,numEmps,category,city,state,fundedDate,raisedAmt,raisedCurrency,round
// lifelock,LifeLock,,web,Tempe,AZ,1-May-07,6850000,USD,b
// 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