rustHow do I get a slice from a string in Rust?
You can get a slice from a string in Rust using the slice
method. This method takes two parameters, the start index and the end index of the slice. The following example code will create a slice of the string "Hello World"
from index 1 to index 5:
let s = "Hello World";
let slice = &s[1..5];
println!("{}", slice);
Output example
ello
Code explanation
let s = "Hello World";
: This creates a string variables
with the value"Hello World"
.let slice = &s[1..5];
: This creates a slice of the strings
from index 1 to index 5 and assigns it to the variableslice
.println!("{}", slice);
: This prints the value of the variableslice
to the console.
Helpful links
More of Rust
- How to match whitespace with a regex in Rust?
- How to replace a capture group using Rust regex?
- How to escape dots with regex in Rust?
- How to replace all matches using Rust regex?
- How to perform matrix operations in Rust?
- How to use regex captures in Rust?
- How to split a string with Rust regex?
- How to use negation in Rust regex?
- How to borrow with lifetime in Rust
- How to use regex to match a group in Rust?
See more codes...