Courses
Tutorials
Practice
Data Structure
Java
Python
HTML
Interview Preparation
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
SQL
Web Development
System Design
Aptitude
GfG Premium
Similar Topics
Web Technologies
37.4K+ articles
DSA
22.8K+ articles
Python
21.3K+ articles
Experiences
16.6K+ articles
Misc
8.8K+ articles
Perl
265+ articles
perl-basics
33+ articles
Perl-String-Operators
15+ articles
Perl-String
9+ articles
Perl-Inbuilt-Functions
5+ articles
perl-operators
52 posts
Recent Articles
Popular Articles
Perl | print operator
Last Updated: 04 March 2023
print operator in Perl is used to print the values of the expressions in a List passed to it as an argument. Print operator prints whatever is passed to it as an argument ...
read more
Perl
perl-basics
perl-operators
Perl-Inbuilt-Functions
Perl | q operator
Last Updated: 07 May 2019
q operator in Perl can be used in place of single quotes. It uses a set of parentheses to surround the string.Syntax: q (string)Returns: a single-quoted string.Note: Any s...
read more
Perl
perl-operators
Perl-String-Operators
Perl | qq operator
Last Updated: 07 May 2019
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 stringNote: Any ...
read more
Perl
perl-operators
Perl-String-Operators
Perl | redo operator
Last Updated: 07 May 2019
redo operator in Perl restarts from the given label without evaluating the conditional statement. Once redo is called then no further statements will execute in that block...
read more
Perl
perl-operators
Perl | substitution Operator
Last Updated: 07 May 2019
Substitution Operator or 's' operator in Perl is used to substitute a text of the string with some pattern specified by the user.Syntax: s/text/patternReturns: 0 on failu...
read more
Perl
perl-operators
Perl-String-Operators
Perl | y Operator
Last Updated: 07 May 2019
The y operator in Perl translates all characters of SearchList into the corresponding characters of ReplacementList. Here the SearchList is the given input characters whic...
read more
Perl
perl-operators
Perl-String-Operators
Perl | cmp Operator
Last Updated: 07 May 2019
cmp operator in Perl is a string equality comparison operator used to compare if the two strings placed left and right to this operator are equal or less than the other.Sy...
read more
Perl
perl-operators
Perl-String-Operators
Perl | lt operator
Last Updated: 07 May 2019
'lt' operator in Perl is one of the string comparison operators used to check for the equality of the two strings. It is used to check if the string to its left is stringw...
read more
Perl
perl-operators
Perl-String-Operators
Perl | gt operator
Last Updated: 07 May 2019
'gt' operator in Perl is one of the string comparison operators used to check for the equality of the two strings. It is used to check if the string to its left is stringw...
read more
Perl
perl-operators
Perl-String-Operators
Perl | le operator
Last Updated: 07 May 2019
'le' operator in Perl is one of the string comparison operators used to check for the equality of the two strings. It is used to check if the string to its left is stringw...
read more
Perl
perl-operators
Perl-String-Operators
Perl | ge operator
Last Updated: 07 May 2019
'ge' operator in Perl is one of the string comparison operators used to check for the equality of the two strings. It is used to check if the string to its left is stringw...
read more
Perl
perl-operators
Perl-String-Operators
Perl | qw Operator
Last Updated: 17 March 2023
The qw operator in Perl is used to extract each element of the given string as it is in an array of elements in single-quote ( ' ' ). This function stands for quote word b...
read more
Perl
perl-operators
Perl-String-Operators
Perl | eq operator
Last Updated: 07 May 2019
'eq' operator in Perl is one of the string comparison operators used to check for the equality of the two strings. It is used to check if the string to its left is stringw...
read more
Perl
perl-operators
Perl-String-Operators
Perl | ne operator
Last Updated: 07 May 2019
'ne' operator in Perl is one of the string comparison operators used to check for the equality of the two strings. It is used to check if the string to its left is stringw...
read more
Perl
perl-operators
Perl-String-Operators
Perl | tr Operator
Last Updated: 11 February 2022
The tr operator in Perl translates all characters of SearchList into the corresponding characters of ReplacementList. Here the SearchList is the given input characters whi...
read more
Perl
perl-operators
Perl-String-Operators
1
2
3
4
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our
Cookie Policy
&
Privacy Policy
Got It !