Rust 文字列が空文字であるかを判定する

Rust 文字列が空文字であるかを判定する

Rustで、文字列が空文字であるかを判定するサンプルコードを記述してます。「is_empty()」を使用することで判定することができます。Rustのバージョンは1.66.0を使用してます。

環境

  • OS windows11 home
  • rustc 1.66.0

文字列が空文字であるかを判定

文字列が空文字であるかを判定するには「is_empty()」を使用します。

"文字列".is_empty();

実際に使用してみます。

fn main() {

    let mut str: String = "mebee".to_string();

    println!( "{}", str.is_empty() );

    str = "".to_string();

    println!( "{}", str.is_empty() );

}

実行結果を見ると、判定されていることが確認できます。