当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。