Answers

Question and Answer:

  Home  Perl Programming

⟩ How many ways can we express string in Perl?

Many. For example 'this is a string' can be expressed in:

"this is a string"

qq/this is a string like double-quoted string/

qq^this is a string like double-quoted string^

q/this is a string/

q&this is a string&

q(this is a string)

 158 views

More Questions for you: