qq() operator in Perl can be used in place of double quotes. It uses a set of parentheses to surround the string.
Syntax: qq (string)
Return:
a double-quoted string
Note: Any set of delimiters can be used in place of the parentheses.
Example 1:
print ( qq(Welcome to GeeksForGeeks) );
|
Output:
Welcome to GeeksForGeeks
Example 2:
$var = 15;
print ( qq(GeeksforGeeks, $var) );
|
Output:
GeeksforGeeks, 15