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


Rust u8.to_ascii_lowercase用法及代碼示例


本文簡要介紹rust語言中 u8.to_ascii_lowercase 的用法。

用法

pub const fn to_ascii_lowercase(&self) -> u8

以等效的 ASCII 小寫形式複製值。

ASCII 字母 'A' 到 'Z' 映射到 'a' 到 'z',但非 ASCII 字母保持不變。

要就地小寫值,請使用 make_ascii_lowercase

例子

let uppercase_a = 65u8;

assert_eq!(97, uppercase_a.to_ascii_lowercase());

相關用法


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