So, i'm having a major brain fart...
If I wanted to add a string AFTER a string, i could do string += "whatever"...
How could I add it to BEFORE it?
Printable View
So, i'm having a major brain fart...
If I wanted to add a string AFTER a string, i could do string += "whatever"...
How could I add it to BEFORE it?
you could always try
vb Code:
originalString = newString & originalString
i COULD do that, and I guess I should've specified more...
actually... nevermind. you gave me an idea. thanks!
Lol please share. Is there an operatorfor what you are trying to do
you could use the string's insert method:
vb Code:
Dim s As String = "string" MsgBox(s.Insert(0, "a "))