split a line on whitespace code example
Example 1: splitting by white space or multiple white spaces
$("#searchquery").text().split(/\s+/);
Example 2: split a line on whitespace
fn main() {
let s = "line 1
line 2
line 3";
let chunks:Vec<_> = s.split_whitespace().collect();
println!("Sum of x and y = {:?} ", chunks);
}
Example 3: splitting by white space or multiple white spaces
$("#searchquery").text().split(/ +/);