Search
 
SCRIPT & CODE EXAMPLE
 

RUST

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);
}
Comment

PREVIOUS NEXT
Code Example
Rust :: rust lang function is never used: rustc(dead_code) 
Rust :: armanriazi•rust•error 
Rust :: armanriazi•rust•pattern•design•interior•mutability•refcell 
Rust :: How to print out a variable in rust 
Rust :: run or compile rust code 
Rust :: rust number squared 
Rust :: rust get char at index 
Rust :: armanriazi•rust•static•vs•cons 
Rust :: sort reverse rust 
Rust :: rust•armanriazi•error•[E0382]: use of moved value: `counter` value moved into closure here, in previous iteration of loop 
Rust :: Read a floating point number from stdin 
Rust :: rust `cfg` which is always true / false 
Rust :: rust•armanriazi•error•[E0277]: `Rc<Mutex<i32` cannot be sent between threads safely `Rc<Mutex<i32` cannot be sent between threads safely 
Rust :: rust•armanriazi•borrowchecker•ownership 
Rust :: rust•armanriazi•concept•zero•cost•abstractions 
Rust :: armanriazi•rust•error•E0277•the trait bound `` is not satisfied 
Rust :: rust hashset 
Lua :: lua 
Lua :: how to make a part rotate roblox 
Lua :: roblox interpolate color 
Lua :: roblox how to find value in table 
Lua :: lua hello world function 
Lua :: roblox math.random 
Lua :: lua tables 
Lua :: What is The Color changing script for luaa 
Lua :: run a function in lua 
Lua :: difference between roblox and minecraft 
Lua :: roblox part touched 
Matlab :: dat file in matlab 
Matlab :: matlab tf get poles 
ADD CONTENT
Topic
Content
Source link
Name
2+4 =