How to Insert string in another string in visual basic
Posted
by magh
on Stack Overflow
See other posts from Stack Overflow
or by magh
Published on 2010-05-18T12:58:58Z
Indexed on
2010/05/18
13:00 UTC
Read the original article
Hit count: 281
the following code shows invalid qualifier when executed
Dim strs As String Dim insStr As String Dim strRes As String
strs = "This is VB.NET Test"
insStr = "Insert"
strRes = strs.Insert(insStr)
Thanks in advance
© Stack Overflow or respective owner