Add text to the beginning of an existing string

  • Thread starter Thread starter Lisa B.
  • Start date Start date
L

Lisa B.

Is there a way (I know there is) to add text to the beginning of an existing
string?

Could it be as simple as: ExistingString = NewString + ExistingString
 
Well I can't see any other replies at this moment, so in my world I'm the
first of no doubt hundreds to say...

Yes.

Regards

Peter Russell
 
Lisa said:
Is there a way (I know there is) to add text to the beginning of an existing
string?

Could it be as simple as: ExistingString = NewString + ExistingString

To add to Peter's eloquent reply ;-)

It is more usual to use:
ExistingString = NewString & ExistingString

Plus will propagate a Null value, ampersand will not.
 
Back
Top