rustHow do I append a character to a string in Rust?
You can append a character to a string in Rust using the push()
method. This method takes a single character as an argument and adds it to the end of the string.
let mut s = String::from("Hello");
s.push('!');
println!("{}", s);
Output example
Hello!
The code above does the following:
- Declares a mutable string
s
and assigns it the valueHello
. - Calls the
push()
method ons
with the argument!
. - Prints the value of
s
to the console.
Helpful links
More of Rust
- How to replace a capture group using Rust regex?
- How to convert a Rust slice of u8 to a string?
- How to use regex with bytes in Rust?
- How to replace strings using Rust regex?
- How to match the end of a line in a Rust regex?
- How to compare two Rust HashMaps?
- How to match a URL with a regex in Rust?
- Regex example to match multiline string in Rust?
- How to parse JSON string in Rust?
- How to get an element from a HashSet in Rust?
See more codes...