1

我将如何查找 Elixir 中的另一个位串是否存在子位串?出于测试目的,我需要验证位串 X 是否存在于位串 Y 中的某个位置。有没有一种简单的方法可以用现有的功能做到这一点?

x = "bar"
y = "foo bar baz"
some_substring_function(x, y)

返回some_substring_function一个真实的值。

提前致谢!

4

1 回答 1

6

您可以使用=~运算符:

iex> "hello world" =~ "hello"
true

String 模块也有一些方便的功能。

于 2013-10-28T14:01:59.123 回答