質問

How would I go about finding if a sub-bitstring is present with another bitstring in Elixir? I need to verify that bitstring X exists somewhere within bitstring Y for testing purposes. Is there a simple way to do this with existing functions?

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

with some_substring_function returning a truthy value.

Thanks in advance!

役に立ちましたか?

解決

You can use the =~ operator:

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

The String module also has some convenience functions.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top