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


Elixir String.replace_prefix用法及代碼示例


Elixir語言中 String.replace_prefix 相關用法介紹如下。

用法:

replace_prefix(string, match, replacement)
@spec replace_prefix(t(), t(), t()) :: t()

如果匹配 match ,則將 string 中的前綴替換為 replacement

如果沒有匹配,則返回未觸及的字符串。如果 match 是空字符串 ( "" ),則 replacement 隻是添加到 string 之前。

例子

iex> String.replace_prefix("world", "hello ", "")
"world"
iex> String.replace_prefix("hello world", "hello ", "")
"world"
iex> String.replace_prefix("hello hello world", "hello ", "")
"hello world"

iex> String.replace_prefix("world", "hello ", "ola ")
"world"
iex> String.replace_prefix("hello world", "hello ", "ola ")
"ola world"
iex> String.replace_prefix("hello hello world", "hello ", "ola ")
"ola hello world"

iex> String.replace_prefix("world", "", "hello ")
"hello world"

相關用法


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