Catharina, it is not very clear the situation you have, so it is difficult to give a categorical answer.
To concatenate items from an array into a single String, without separators, you can use the method String.Concat()
To concatenate items of an array into a single string, including a separation string, the method, already indicated by others, is Join()
To complete a preformed string with array items, the preferred method is String.Format()
Now, did you mention that you need to use the SPLIT and I didn’t understand, because Split() does exactly the opposite: divides a String into several fragments and returns an Array.
Below are some examples. If you put your code here, it makes it easier to give an answer.
Sub ExemplosStringArray()
Dim arrayOfString As String() = {"aaaa", "bbbb", "cccc"}
Dim concatStrings = String.Concat(arrayOfString)
MsgBox(concatStrings)
Dim joinedStrings = Join(arrayOfString, ";")
MsgBox(joinedStrings)
Dim formattedString = String.Format("Temos {0}, {1} e finalmente {2}", arrayOfString)
MsgBox(formattedString)
Dim multipartString = "dddd-eeee+ffff"
Dim arrayFromString = multipartString.Split("-"c, "+"c)
Dim newStringFromArray = Join(arrayFromString, vbCrLf)
MsgBox(newStringFromArray)
End Sub
Possible duplicate of String array conversion
– João Victor Gomes Moreira
Take a look at the function String.Join, that can be used to convert arrays into a single string.
– carlosfigueira
Put your code in,make a [mcve].
– Maniero
@Victorgomes seems to have linked something wrong, the question here is about Vb.net and not php =)
– Guilherme Nascimento