Q:

Rust program to create a slice from a string without specifying the start index

belongs to collection: Rust Slices Programs

0

In this program, we will create a string and then we will create a slice from the string without specifying the start index and print the result.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to create a slice from a string without specifying the start index is given below. The given program is compiled and executed successfully.

// Rust program to create a slice from 
// string without specifying start index

fn main() {
   let str   = "Includehelp".to_string();
   let slice = &str[..3]; 
   
   println!("Slice: {}",slice);
}

Output:

Slice: Inc

Explanation:

Here, we created a string str. Then we sliced the string without specifying the start index and printed the result.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Rust program to create a slice from a string witho... >>
<< Rust program to create a mutable slice from an int...