Answers for "how to split up commas in a string to multiple strings"

0

Split text on several separators

fn main() {
  let s = "Hey, is this a complex-program, or a complex_program";
  let chunks:Vec<_> = s.split(&[',', '-', '_'][..]).collect();

  println!("Split on multiple separators = {:?} ", chunks);
}
Posted by: Guest on May-28-2021

Code answers related to "how to split up commas in a string to multiple strings"

Browse Popular Code Answers by Language