rustHow do I use a variable number of arguments in Rust?
Rust supports variable number of arguments using the std::env::args()
function. This function returns an iterator over the arguments passed to the program.
fn main() {
let args: Vec<String> = std::env::args().collect();
println!("{:?}", args);
}
Output example
["/usr/local/bin/rustrun", "my_program.rs", "arg1", "arg2"]
The code above collects the arguments passed to the program into a vector of strings.
std::env::args()
: This function returns an iterator over the arguments passed to the program.collect()
: This method collects the iterator into a vector of strings.
Helpful links
Related
- How do I identify unused variables in Rust?
- How do I access a tuple variable by index in Rust?
- How do I get the size of a variable in Rust?
- How do I use a range with a variable in Rust?
- How do I zip variables in Rust?
- How do I reassign a variable in Rust?
- How do I use a variable from another file in Rust?
- How do I create a variable in Rust?
- How do I print the address of a variable in Rust?
- How do I print the type of a variable in Rust?
More of Rust
- How to replace a capture group using Rust regex?
- How to calculate the sum of a Rust slice?
- How do I create an array of strings in Rust?
- How to replace all matches using Rust regex?
- How to use regex to match a double quote in Rust?
- Hashshet example in Rust
- How to use regex captures in Rust?
- How to convert JSON to a struct in Rust?
- How to pop an element from a Rust HashMap?
- How to convert a Rust HashMap to a JSON string?
See more codes...