當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Elixir Regex.match?用法及代碼示例


Elixir語言中 Regex.match? 相關用法介紹如下。

用法:

match?(regex, string)
@spec match?(t(), String.t()) :: boolean()

返回一個布爾值,指示是否存在匹配項。

例子

iex> Regex.match?(~r/foo/, "foo")
true

iex> Regex.match?(~r/foo/, "bar")
false

Elixir 還提供 Kernel.=~/2 String.match?/2 作為針對正則表達式和字符串測試字符串的替代方法。

相關用法


注:本文由純淨天空篩選整理自elixir-lang.org大神的英文原創作品 Regex.match?(regex, string)。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。