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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。