Home
VB.NET
String Insert
Updated Nov 9, 2021
Dot Net Perls
Insert. This VB.NET Function places another String somewhere inside the first String. Using the Insert function on the String type, we create a longer String.
Notes, strings. When we call Insert, a new string is created—the existing string is not modified. Insert() also is available on StringBuilder, which does modify an underlying buffer.
String Remove
StringBuilder
Insert example. We call Insert. We must assign a variable to the result of Insert to get the updated string. A new string is created upon the managed heap.
Argument 1 This is the index in the original string where we want to place the new substring. With 4, we place after the fourth char.
Argument 2 This is the new string we want to place inside of the original string. It will be found in the result.
Module Module1 Sub Main() Dim value As String = "the cat" Console.WriteLine("INITIAL: {0}", value) ' Use Insert at an index. Dim result As String = value.Insert(4, "soft ") Console.WriteLine("INSERT: {0}", result) End Sub End Module
INITIAL: the cat INSERT: the soft cat
Insert, IndexOf. We can use the IndexOf function with Insert. This demonstrates how we can search for the target index before passing that value to Insert.
Detail The first argument to Insert here is the index we received from IndexOf.
And The index is the position of the start of the substring "cat" in the original string.
Module Module1 Sub Main() Dim value As String = "the soft cat" Console.WriteLine("INITIAL: {0}", value) ' Use Insert with IndexOf. Dim index As Integer = value.IndexOf("cat") Dim result As String = value.Insert(index, "orange ") Console.WriteLine("INSERT: {0}", result) End Sub End Module
INITIAL: the soft cat INSERT: the soft orange cat
A summary. Strings are immutable. When we call Insert we must assign a variable reference to its result. Despite this possible complication, the Insert function is useful in many programs.
Dot Net Perls is a collection of pages with code examples, which are updated to stay current. Programming is an art, and it can be learned from examples.
Donate to this site to help offset the costs of running the server. Sites like this will cease to exist if there is no financial support for them.
Sam Allen is passionate about computer languages, and he maintains 100% of the material available on this website. He hopes it makes the world a nicer place.
This page was last updated on Nov 9, 2021 (edit).
Home
Changes
© 2007-2025 Sam Allen