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

java - ImportError: No module named py4j.java_gateway -

python - Receiving "KeyError" after decoding json result from url -

.net - Creating a new Queue Manager and Queue in Websphere MQ (using C#) -