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


Rust char.is_lowercase用法及代码示例


本文简要介绍rust语言中 char.is_lowercase 的用法。

用法

pub fn is_lowercase(self) -> bool

如果此 char 具有 Lowercase 属性,则返回 true

LowercaseUnicode Standard 的第 4 章(字符属性)中进行了说明,并在 Unicode Character Database DerivedCoreProperties.txt 中指定。

例子

基本用法:

assert!('a'.is_lowercase());
assert!('δ'.is_lowercase());
assert!(!'A'.is_lowercase());
assert!(!'Δ'.is_lowercase());

// The various Chinese scripts and punctuation do not have case, and so:
assert!(!'中'.is_lowercase());
assert!(!' '.is_lowercase());

相关用法


注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 char.is_lowercase。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。