perl assign string on multiple lines -


I want to be able to specify the combination of multiple strings in one variable.

I 'looking for something like this:

  $ variable = 123 $ string = "hello" + "this" + $ variable + "string" is;   

Is it possible to do something with these lines in Perl?

from:

additive operators

Binary + returns the sum of two numbers.
Binary - gives the difference of two numbers.
Binary . aligns two stars.

Therefore, you need to combine a string:

  $ string = "Hello" "This is a". $ Variable "string";    

Comments

Popular posts from this blog

Out of index C/C++ -

regex - PatternSyntaxException: while using String.ReplaceAll function in java? -

java - Projects which are accessed via multiple (different) IDEs: Ant or Maven? -