rustHow do I check if a string contains a certain substring in Rust?
You can use the contains()
method to check if a string contains a certain substring in Rust.
Example
let my_string = "Hello World";
if my_string.contains("World") {
println!("The string contains the substring!");
}
Output example
The string contains the substring!
The contains()
method takes a &str
as an argument and returns a bool
indicating whether the string contains the substring.
Code explanation
let my_string = "Hello World";
: This declares a variablemy_string
and assigns it the value"Hello World"
.if my_string.contains("World") {
: This checks if the stringmy_string
contains the substring"World"
.println!("The string contains the substring!");
: This prints the message"The string contains the substring!"
if the string contains the substring.
Helpful links
More of Rust
- How to convert a Rust HashMap to a BTreeMap?
- How to replace all matches using Rust regex?
- How to use non-capturing groups in Rust regex?
- How to use regex to match a group in Rust?
- How to get a capture group using Rust regex?
- How to use regex to match a double quote in Rust?
- How to use a tuple as a key in a Rust HashMap?
- How to parse JSON string in Rust?
- How to use regex with bytes in Rust?
- How to calculate the inverse of a matrix in Rust?
See more codes...