次の方法で共有


String.Concat メソッド (Object, Object, Object)

指定した 3 つのオブジェクトの String 形式を連結します。

Overloads Public Shared Function Concat( _
   ByVal arg0 As Object, _   ByVal arg1 As Object, _   ByVal arg2 As Object _) As String
[C#]
public static string Concat(objectarg0,objectarg1,objectarg2);
[C++]
public: static String* Concat(Object* arg0,Object* arg1,Object* arg2);
[JScript]
public static function Concat(
   arg0 : Object,arg1 : Object,arg2 : Object) : String;

パラメータ

戻り値

arg0arg1 、および arg2String 形式の値の連結結果。

解説

Empty 文字列は、任意の null 引数の代わりに使用されます。

使用例

[Visual Basic, C#, C++] Concat メソッドの例を次に示します。

 
Imports System
Imports Microsoft.VisualBasic
 _

Class stringConcat5
   
   Public Shared Sub Main()
      Dim i As Integer = - 123
      Dim o As [Object] = i
      Dim objs() As [Object] = {- 123, - 456, - 789}
      
      Console.WriteLine("Concatenate 1, 2, and 3 objects:")
      Console.WriteLine("1) {0}", [String].Concat(o))
      Console.WriteLine("2) {0}", [String].Concat(o, o))
      Console.WriteLine("3) {0}", [String].Concat(o, o, o))
      
      Console.WriteLine(vbCrLf & "Concatenate 4 objects and a variable length parameter list:")
      Console.WriteLine("4) {0}", [String].Concat(o, o, o, o, o))
      
      Console.WriteLine(vbCrLf & "Concatenate a 3 element object array:")
      Console.WriteLine("5) {0}", [String].Concat(objs))
   End Sub 'Main
End Class 'stringConcat5
'
'This example produces the following output:
'Concatenate 1, 2, and 3 objects:
'1) -123
'2) -123-123
'3) -123-123-123
'
'Concatenate 4 objects and a variable length parameter list:
'4) -123-123-123-123-123
'
'Concatenate a 3 element object array:
'5) -123-456-789
'

[C#] 
using System;

class stringConcat5 {
    public static void Main() {
    int i = -123;
    Object o = i;
    Object[] objs = new Object[] {-123, -456, -789};

    Console.WriteLine("Concatenate 1, 2, and 3 objects:");
    Console.WriteLine("1) {0}", String.Concat(o));
    Console.WriteLine("2) {0}", String.Concat(o, o));
    Console.WriteLine("3) {0}", String.Concat(o, o, o));

    Console.WriteLine("\nConcatenate 4 objects and a variable length parameter list:");
    Console.WriteLine("4) {0}", String.Concat(o, o, o, o, o));

    Console.WriteLine("\nConcatenate a 3 element object array:");
    Console.WriteLine("5) {0}", String.Concat(objs));
    }
}
/*
This example produces the following output:
Concatenate 1, 2, and 3 objects:
1) -123
2) -123-123
3) -123-123-123

Concatenate 4 objects and a variable length parameter list:
4) -123-123-123-123-123

Concatenate a 3 element object array:
5) -123-456-789
*/

[C++] 
#using <mscorlib.dll>

using namespace System;

int main() {
   int i = -123;
   Object* o = __box(i);
   Object* objs[] = {__box(-123), __box(-456), __box(-789)};

   Console::WriteLine(S"Concatenate 1, 2, and 3 objects:");
   Console::WriteLine(S"1) {0}", String::Concat(o));
   Console::WriteLine(S"2) {0}", String::Concat(o, o));
   Console::WriteLine(S"3) {0}", String::Concat(o, o, o));

   Console::WriteLine(S"\nConcatenate 4 objects and a variable length parameter list:");
   Console::WriteLine(S"4) {0}", String::Concat(o, o, o, o, o));

   Console::WriteLine(S"\nConcatenate a 3 element object array:");
   Console::WriteLine(S"5) {0}", String::Concat(objs));
}
/*
This example produces the following output:
Concatenate 1, 2, and 3 objects:
1) -123
2) -123-123
3) -123-123-123

Concatenate 4 objects and a variable length parameter list:
4) -123-123-123-123-123

Concatenate a 3 element object array:
5) -123-456-789
*/

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ, .NET Compact Framework - Windows CE .NET, Common Language Infrastructure (CLI) Standard

参照

String クラス | String メンバ | System 名前空間 | String.Concat オーバーロードの一覧 | Object | Join