如何检查字符串是否包含Rust中的子字符串?

时间:2018-02-14 19:39:55

标签: string rust

我正在尝试查找子字符串是否在字符串中。在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(); }; }`

该消息表明我把它放在一个区块中,但我不知道该怎么做。

1 个答案:

答案 0 :(得分:23)

Rust没有这样的操作员。您可以改为使用String::contains method

if a.contains("bc") {
    do_something();
}