我正在尝试查找子字符串是否在字符串中。在Python中,这涉及in
运算符,所以我编写了这段代码:
let a = "abcd";
if "bc" in a {
do_something();
}
我收到一条奇怪的错误消息:
error: expected `{`, found `in`
--> src/main.rs:3:13
|
3 | if "bc" in a {
| _____________-^
4 | | do_something();
5 | | }
| |_____- help: try placing this code inside a block: `{ a <- { do_something(); }; }`
该消息表明我把它放在一个区块中,但我不知道该怎么做。
答案 0 :(得分:23)
Rust没有这样的操作员。您可以改为使用String::contains
method:
if a.contains("bc") {
do_something();
}