Connecting Tech Pros Worldwide Forums | Help | Site Map

split a string over two or more lines

Newbie
 
Join Date: Apr 2009
Location: Stuttgart, Germany
Posts: 28
#1: Jun 15 '09
How I can split the following string in two or more lines?

Expand|Select|Wrap|Line Numbers
  1. string test = "its something unpredictable but in the end is right. I hope you had the time of your life.";
which set of buttons should I use to split it like this and the string will be still logicaly one line

Expand|Select|Wrap|Line Numbers
  1. string test = "its something unpredictable 
  2.                       but in the end is right. 
  3.                       I hope you had the time of your life.";
  4.  
this is helpful to send queries to the DB's

Newbie
 
Join Date: Apr 2009
Location: Stuttgart, Germany
Posts: 28
#2: Jun 15 '09

re: split a string over two or more lines


Hey guys, it's solved..

Thank you anyway.
Reply