
11-26-2007, 06:48 AM
|
| D-Web Programmer | | Join Date: Mar 2007 Location: Chennai
Posts: 67
| |
Re: How to concatenate strings with Perl? Hi, Using Join and dot operator, you can concatenate string easily.
Example:- - $string = 'Hello'.'World';
output as,
HelloWorld
- $string = join 'Hello','World';
output as,
HelloWorld
__________________ Regards, VELHARI I am not totally useless. I can be used for a bad example |