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


Elixir Macro.underscore用法及代碼示例


Elixir語言中 Macro.underscore 相關用法介紹如下。

用法:

underscore(atom)
@spec underscore(atom() | String.t()) :: String.t()

將給定的原子或二進製轉換為下劃線格式。

如果給定一個原子,則假定它是一個 Elixir 模塊,因此將其轉換為二進製然後進行處理。

此函數旨在強調語言標識符/標記,這就是它屬於 Macro 模塊的原因。不要將它用作下劃線字符串的通用機製,因為它不支持 Unicode 或 Elixir 標識符中無效的字符。

例子

iex> Macro.underscore("FooBar")
"foo_bar"

iex> Macro.underscore("Foo.Bar")
"foo/bar"

iex> Macro.underscore(Foo.Bar)
"foo/bar"

一般來說,underscore 可以被認為是 camelize 的反麵,但是,在某些情況下,格式可能會丟失:

iex> Macro.underscore("SAPExample")
"sap_example"

iex> Macro.camelize("sap_example")
"SapExample"

iex> Macro.camelize("hello_10")
"Hello10"

相關用法


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