1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

文字列が同じものかどうか判定するプログラム(完全一致)

Last updated at Posted at 2018-06-27

##文字列が同じものかどうか判定するプログラム 
タイトル通りに今回は二つの文字列を比較してそれが同じ文字列であるかどうかの判定を出力するプログラムを書きます

今回はアルファベットの同じAでも大文字のAと小文字のaの様に小文字、大文字の違いのように文字列が完全に等しくないと違う文字列として判断するプログラムを書きました。
##ソースコード


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Hikaku
{
static void Main()
{
string s1 = "ABC";
string s2 = "abc";
        //s1とs2が等しいなら「等しいです」を、等しくないなら「等しくないです」を出力する
        if (s1 == s2)
        {
            Console.WriteLine("等しいです。");
        }
        else
        {
            Console.WriteLine("等しくないです。");
        }
        Console.ReadKey();
    }
}

}

##結果
大小区別比較結果.PNG
今回はstring s1の文字列ABCとstring s2の文字列abcを比較して大文字と小文字の違いがあったので文字列は等しくないものと判定して結果を表示しました。
##まとめ
今回は単純に文字列が完全に一致しているかどうかを判定するためのプログラムを書きました。
次回は他の比較方法を試したいです
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?