Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Carring a string onto the next line... 1

Status
Not open for further replies.

snowboardr

Programmer
Feb 22, 2002
1,401
PH
I thought you could carry a string onto the next line by doing this..


mystring = "hello...."_
"there!"

I guess im doing it wrong...could you please correct me?

Thanks- Jason
 
You can carry commands over the line but as soon as you split a string you need to join it back together again using the & operator:

mystring = "hello...." & _
"there!"


Derren
[Mediocre talent - spread really thin]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top