The String.Format in .NET (maybe just VB.NET) convert {0}, {1}, ... into determined String, for example:
Dim St As String = "Test: {0}, {1}"
Console.WriteLine(String.Format(St, "Text1", "Text2"))
I've tried to search in both Google and StackOverflows, but they all return number-string format.