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


Rust char.is_alphabetic用法及代碼示例


本文簡要介紹rust語言中 char.is_alphabetic 的用法。

用法

pub fn is_alphabetic(self) -> bool

如果此 char 具有 Alphabetic 屬性,則返回 true

AlphabeticUnicode Standard 的第 4 章(字符屬性)中進行了說明,並在 Unicode Character Database DerivedCoreProperties.txt 中指定。

例子

基本用法:

assert!('a'.is_alphabetic());
assert!('京'.is_alphabetic());

let c = '💝';
// love is many things, but it is not alphabetic
assert!(!c.is_alphabetic());

相關用法


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