belongs to collection: Rust Slices Programs
In this program, we will create a string and then we will slice the string based on the start and end index and print the result.
Program/Source Code:
The source code to create a slice from the string is given below. The given program is compiled and executed successfully.
// Rust program to create a slice from string fn main() { let str = "Includehelp".to_string(); let slice = &str[2..5]; println!("Slice: {}",slice); }
Output:
Slice: clu
Explanation:
Here, we created a string str initialized with "Includehelp". After that, we sliced the string from index 2 to 5 and printed the result.
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Program/Source Code:
The source code to create a slice from the string is given below. The given program is compiled and executed successfully.
Output:
Explanation:
Here, we created a string str initialized with "Includehelp". After that, we sliced the string from index 2 to 5 and printed the result.
need an explanation for this answer? contact us directly to get an explanation for this answer