TheDeveloperBlog.com

Home | Contact Us

C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML

<< Back to VBNET

VB.NET String.Concat Examples

Combine Strings with the plus-operator or the String.Concat Function.
String.Concat. Two or more strings can be concatenated (combined) into one. This requires the plus operator, or the String.Concat Function.
Syntax. These syntax forms compile into the same intermediate language instructions. Another option is StringBuilder, which can improve performance.
An example. When we use the plus-operator on Strings, the String.Concat Function is called in the compiled code. Using the plus-operator on strings is syntactic sugar.Console

Step 1: Here we create 2 Strings (value1 and value2) with the literal values "Visual" and "Basic."

Step 2: We combine the strings with a plus and display the results with Console.WriteLine.

Step 3: We can use plus with more than 2 strings—here we place a 1-char string literal in between the 2 strings.

Step 4: We apply the String.Concat Function, which receives 2 or more Strings and combines them into a single String.

VB.NET program that concatenates strings Module Module1 Sub Main() ' Step 1: declare 2 input strings. Dim value1 As String = "Visual" Dim value2 As String = "Basic" ' Step 2: concat with plus. Dim value3 = value1 + value2 Console.WriteLine(value3) ' Step 3: concat with a space in between. Dim value4 = value1 + " " + value2 Console.WriteLine(value4) ' Step 4: use String.Concat Function. Dim value5 = String.Concat(value1, " ", value2) Console.WriteLine(value5) End Sub End Module Output VisualBasic Visual Basic Visual Basic
Ampersand concat. We can use the "&" operator to concatenate strings. This works in the same way as the plus operator—you can use whichever you like better.

Note: Usually it is best to keep a code base consistent, so if other code uses the ampersand, it is probably best to use it too.

VB.NET program that uses and to concatenate Module Module1 Sub Main() Dim left As String = "bird" Dim right As String = " frog" ' Concatenate 2 strings with ampersand. Dim result = left & right Console.WriteLine("RESULT: " & result) Console.WriteLine("LENGTH: " & result.Length) End Sub End Module Output RESULT: bird frog LENGTH: 9
Join. With string concat, no characters are added in between. To add a separator in between strings, we can invoke a function like String.Join.Join

ParamArray: We can pass strings to String.Join and they are automatically added to a ParamArray. So we concat the strings with a separator.

ParamArray
VB.NET program that uses Join with ParamArray Module Module1 Sub Main() ' Join the strings with a space in between. Dim result As String = String.Join(" ", "bird", "cat", "frog") Console.WriteLine("JOINED: {0}", result) End Sub End Module Output JOINED: bird cat frog
Error, concat Integer. We cannot directly concatenate an Integer to a String. This causes an InvalidCastException. A conversion must first be done.
VB.NET program that causes error Module Module1 Sub Main() Dim value As String = "bird" Dim number As Integer = 100 ' This concatenation causes an error. Dim result = value + number End Sub End Module Output Unhandled Exception: System.InvalidCastException: Conversion from string "bird" to type 'Double' is not valid. ---> System.FormatException: Input string was not in a correct format. at Microsoft.VisualBasic.CompilerServices.Conversions...
Concat Integer. To concatenate an Integer to a String, we can call ToString on the Integer. This avoids the InvalidCastException, and no error occurs.
VB.NET program that concats Integer to String Module Module1 Sub Main() Dim value As String = "bird" Dim number As Integer = 100 ' Concat an integer. Dim result = value + number.ToString() ' Write the string. Console.WriteLine(result) End Sub End Module Output bird100
StringBuilder. For performance, avoid String.Concat in lengthy loops. In a long-running loop, please consider instead the StringBuilder type and its Append Function.StringBuilder
A summary. The plus-operator concatenates strings in VB.NET programs. This yields programs that have shorter syntax and may be clearer to read.
Function, notes. We can call the String.Concat Function to combine strings. String.Concat and the plus-operator both compile to the String.Concat Function call in the intermediate language.Strings
© TheDeveloperBlog.com
The Dev Codes

Related Links:


Related Links

Adjectives Ado Ai Android Angular Antonyms Apache Articles Asp Autocad Automata Aws Azure Basic Binary Bitcoin Blockchain C Cassandra Change Coa Computer Control Cpp Create Creating C-Sharp Cyber Daa Data Dbms Deletion Devops Difference Discrete Es6 Ethical Examples Features Firebase Flutter Fs Git Go Hbase History Hive Hiveql How Html Idioms Insertion Installing Ios Java Joomla Js Kafka Kali Laravel Logical Machine Matlab Matrix Mongodb Mysql One Opencv Oracle Ordering Os Pandas Php Pig Pl Postgresql Powershell Prepositions Program Python React Ruby Scala Selecting Selenium Sentence Seo Sharepoint Software Spellings Spotting Spring Sql Sqlite Sqoop Svn Swift Synonyms Talend Testng Types Uml Unity Vbnet Verbal Webdriver What Wpf