rustHow can I compare two Rust strings with PartialEq?
You can compare two Rust strings with PartialEq by using the ==
operator. For example:
let string1 = "Hello";
let string2 = "World";
assert!(string1 != string2);
The output of this code will be assertion failed: string1 != string2
.
Code explanation
let string1 = "Hello";
- This declares a variablestring1
and assigns it the value"Hello"
.let string2 = "World";
- This declares a variablestring2
and assigns it the value"World"
.assert!(string1 != string2);
- This uses theassert!
macro to compare the two strings and check if they are not equal.
Helpful links
More of Rust
- Bitwise operator example in Rust
- How to use regex lookahead in Rust?
- How to match the end of a line in a Rust regex?
- How to use look behind in regex in Rust?
- How to use regex with bytes in Rust?
- How to use regex to match a double quote in Rust?
- How to perform matrix operations in Rust?
- How to replace a capture group using Rust regex?
- How to calculate the inverse of a matrix in Rust?
- How to parse JSON string in Rust?
See more codes...