advertisement

Article:
  StringBuilders Explained
Subject:   VB example
Date:   2003-07-22 08:26:31
From:   anonymous2
Actually this example won't work at all in VB:


Dim st As String
st = "Hello"
st += " World!"


in VB you need to do the following to concatenate a string:


st = "Hello"
st = st & " World!"


Moreover, while I agree that VB has some useful functions for string manipulation, it is definitely not that great, as it lacks string interpolation, escape chars, etc.



Main Topics Oldest First

Showing messages 1 through 1 of 1.

  • Wei-Meng Lee photo VB example
    2003-07-22 16:46:19  Wei-Meng Lee | O'Reilly Author [Reply | View]

    Oh yes...sorry about that. Please replace:
    st += " World!" with st = st & " World!"
    I kept thinking that "+=" was supported in VB6.