当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


VB.NET String Concat()用法及代码示例


Concat() 方法用于连接两个字符串并将连接后的字符串返回给调用函数。

用法:

Function Concat (ByVal str1 as String, ByVal str2 as String) as String

参数:

  • Str1:要连接的字符串。
  • Str2:要连接的字符串。

返回值:它返回基于指定字符串的连接字符串。

程序/源代码:

下面给出了演示 String 类的 Concat() 方法的源代码。给定的程序已成功编译并执行。

'VB.NET program to demonstrate the Concat() 
'method of String class.

Imports System

Module Module1
    Sub Main()
        Dim str1 As String = "Hello "
        Dim str2 As String = "World "
        Dim str3 As String

        str3 = String.Concat(str1, str2)

        Console.WriteLine("Str1:{0}", str1)
        Console.WriteLine("Str2:{0}", str2)
        Console.WriteLine("Str3:{0}", str3)
    End Sub
End Module

输出:

Str1:Hello
Str2:World
Str3:Hello World
Press any key to continue . . .

说明:

在上面的程序中,我们创建了一个包含 Main() 函数的模块 Module1。 Main() 函数是程序的入口点。

在 Main() 函数中,我们创建了三个字符串 str1、str2 和 str3。在这里,我们将两个字符串 str1 和 str2 连接起来,并将连接后的字符串分配给 str3。之后,我们在控制台屏幕上打印了所有字符串。





相关用法


注:本文由纯净天空筛选整理自 VB.Net program to demonstrate the Concat() method of String class。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。