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


Elixir Regex.compile用法及代碼示例


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

用法:

compile(source, options \\ "")
@spec compile(binary(), binary() | [term()]) :: {:ok, t()} | {:error, any()}

編譯正則表達式。

給定的選項可以是二進製文件,其字符表示與 ~r(參見 Kernel.sigil_r/2 )印記相同的正則表達式選項,也可以是選項列表,正如 Erlang 的 :re 模塊所期望的那樣。

如果成功則返回{:ok, regex},否則返回{:error, reason}

例子

iex> Regex.compile("foo")
{:ok, ~r/foo/}

iex> Regex.compile("*foo")
{:error, {'nothing to repeat', 0}}

相關用法


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