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

##string str1とstr2の文字列を連結して表示するプログラム
今回は二つの文字列を連結して表示するプログラムを作成しました。
##ソースコード


using System;
namespace ConsoleApplication1
{
class renketu
{
static void Main()
{
string str1 = "おはよう";
string str2 = "ございます";
        string result = str1 + str2;

        Console.WriteLine(result);

        Console.ReadKey();
    }
}

}

##結果
文字列結合.PNG
このプログラムは単純にstr1とstr2に格納した文字列を+で合わせて表示するだけのプログラムです。

##Concatメソッドを使用する方法
+を使用する以外にもStringクラスのConcatというメソッドを利用した文字の連結も可能です。
##ソースコード


using System;
namespace ConsoleApplication1
{
class Sample
{
static void Main()
{
string str1 = "こん";
string str2 = "にちは";
        string result = String.Concat(str1, str2);

        Console.WriteLine(result);

        Console.ReadKey();
    }
}

}

##結果Concat.PNG

このようにしてConcatメソッドの引数に、連結したい文字列を指定しすることで文字の連結もできました。
##まとめ
二つの方法には特に結果出力の違いもなく双方複雑なものでもないので自分が使いやすいほうの扱い方をすればいいと思いました。

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?