rustrust string copy
A Rust String can be copied using the clone() method. This method creates a new String with the same contents as the original.
Example
let s1 = String::from("Hello World!");
let s2 = s1.clone();
println!("s1 = {}, s2 = {}", s1, s2);
Output example
s1 = Hello World!, s2 = Hello World!
The clone() method:
- Creates a new
Stringwith the same contents as the original. - Allocates memory for the new
Stringon the heap. - Copies the contents of the original
Stringinto the newString.
Helpful links
More of Rust
- How to match the end of a line in a Rust regex?
- How to add an entry to a Rust HashMap?
- How to use regex captures in Rust?
- How to use binary regex in Rust?
- How to use named capture groups in Rust regex?
- Regex example to match multiline string in Rust?
- How to replace a capture group using Rust regex?
- How to use captures_iter with regex in Rust?
- How to make regex case insensitive in Rust?
- How to use regex with bytes in Rust?
See more codes...