I have a string "Text to beprinted."
How can i insert three spaces between be and printed in the string.We can not use three spaces inside single quotes.Its not working.If we ll use "Separated by spaces" it will add one space.if we want to insert two more space.How to do it.
Thanx in advance.
Rudra
Hi,
Splitt this string into 3 parts n store it in varaible and then concatranate into one string separated by space.
Regrds,
Prashant
Hi Rudra,
If you give Separated by Spaces it adds only one space between them. So you need to specify the spacing .
Concatenate 'Hi' 'how' ' ' 'you' separated by space.
Then you will get the out put as
'Hi How you'.
Rewards if useful.
Thanks,
Murthy
Add a comment