in reply to Double Qoutes in string command
my $string = 'sysBootFileWrite "QSDvxWorks.aif"';
For cases where interpolation is needed, you can backslash the inner double quotes or use the qq operator:
print "He said, \"Hello, $darling.\""; print qq(He said, "Hello, $darling.");
|
|---|