Open In App
Related Articles

Perl | qq operator

Improve Article
Improve
Save Article
Save
Like Article
Like

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:




#!/usr/bin/perl -w
  
# Passing string to qq operator
print(qq(Welcome to GeeksForGeeks));


Output:

Welcome to GeeksForGeeks

 
Example 2:




#!/usr/bin/perl -w
  
# Defining an Integer variable
$var = 15;
  
# Passing string and variable to
# the qq operator
print(qq(GeeksforGeeks, $var));


Output:

GeeksforGeeks, 15
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 07 May, 2019
Like Article
Save Article
Similar Reads