Home »
Rust »
Rust Programs
Rust program to create a slice from a string without specifying the last index
Rust | Slice Example: Write a program to create a slice from a string without specifying the last index.
Last Updated : October 18, 2021
Problem Statement
In this program, we will create a string and then we will create a slice from the string without specifying the last index and print the result.
Program/Source Code
The source code to create a slice from a string without specifying the last index is given below. The given program is compiled and executed successfully.
// Rust program to create a slice from string
// without specifying last index
fn main() {
let str = "Includehelp".to_string();
let slice = &str[2..];
println!("Slice: {}",slice);
}
Output
Slice: cludehelp
Explanation
Here, we created a string str. Then we sliced the string without specifying the last index and printed the result.
Rust Slices Programs »
Advertisement
Advertisement