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
String
with the same contents as the original. - Allocates memory for the new
String
on the heap. - Copies the contents of the original
String
into the newString
.
Helpful links
More of Rust
- How to replace a capture group using Rust regex?
- Regex example to match multiline string in Rust?
- How to parse a file with Rust regex?
- How to use regex lookahead in Rust?
- How to use regex captures in Rust?
- How to use regex to match a group in Rust?
- How to match the end of a line in a Rust regex?
- How to perform matrix operations in Rust?
- How to use regex to match a double quote in Rust?
- How to replace strings using Rust regex?
See more codes...