Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将如何查找 Elixir 中的另一个位串是否存在子位串?出于测试目的,我需要验证位串 X 是否存在于位串 Y 中的某个位置。有没有一种简单的方法可以用现有的功能做到这一点?
x = "bar" y = "foo bar baz" some_substring_function(x, y)
返回some_substring_function一个真实的值。
some_substring_function
提前致谢!
您可以使用=~运算符:
=~
iex> "hello world" =~ "hello" true
String 模块也有一些方便的功能。