Sample code for 30+ languages & platforms
Rust

StringBuilder GetAfterFinal

Demonstrates the StringBuilder.GetAfterFinal method.

The GetBefore method was added in Chilkat v9.5.0.77

Chilkat Rust Downloads

Rust

let sb = chilkat::StringBuilder::new();
let _ = sb.append("111--222--333--444").is_ok();

// The GetAfterFinal method returns the contents of the string after the final occurrence of
// the marker string.  If the remove flag is true, then both the returned string AND
// the marker are removed.

// If the marker is not found, then the entire string is returned and the sb is cleared.
let remove_flag = true;
let marker = "--".to_string();
let mut substr = String::new();
while sb.length() > 0 {
    substr = sb.get_after_final(&marker, remove_flag).unwrap_or_default();
    println!("substr = {}, sb contains: {}", substr, sb.get_as_string().unwrap_or_default());
}

// Output:
// substr = 444, sb contains: 111--222--333
// substr = 333, sb contains: 111--222
// substr = 222, sb contains: 111
// substr = 111, sb contains: 
//