Split text on several separators in Rust
In Rust split() function is part of Strings methods which allow us to split by separators the function will take an array of separators as parameter, after that we collect it using collect() function.
fn main() {
let s = "Hey, this is a program-will split by multi_seperators";
let chunks:Vec<_> = s.split(&[',', '-', '_'][..]).collect();
println!("Split on multiple separators = {:?} ", chunks);
}
Output
Split on multiple separators = ["Hey", " this is a program", "will split by multi", "seperators"]
Mockstacks was launched to help beginners learn programming languages; the site is optimized with no Ads as, Ads might slow down the performance. We also don't track any personal information; we also don't collect any kind of data unless the user provided us a corrected information. Almost all examples have been tested. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. By using Mockstacks.com, you agree to have read and accepted our terms of use, cookies and privacy policy.