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


Elixir String.next_grapheme用法及代碼示例


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

用法:

next_grapheme(string)
@spec next_grapheme(t()) :: {grapheme(), t()} | nil

返回字符串中的下一個字素。

結果是一個元組,其中包含字形和字符串的其餘部分或 nil,以防字符串到達末尾。

例子

iex> String.next_grapheme("olá")
{"o", "lá"}

iex> String.next_grapheme("")
nil

相關用法


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