How many ways can we express string in Perl?

Submitted by: Administrator
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)
Submitted by: Administrator

Read Online Perl Programming Job Interview Questions And Answers