📜  珀尔 | gt运算符

📅  最后修改于: 2022-05-13 01:55:50.082000             🧑  作者: Mango

珀尔 | gt运算符

Perl 中的“ gt ”运算符是字符串运算符之一,用于检查两个字符串是否相等。它用于检查其左侧的字符串是否大于其右侧的字符串。

示例 1:

#!/usr/local/bin/perl
  
# Initializing Strings
$a = "Welcome";
$b = "Geeks";
  
# Comparing the strings using gt operator
$c = $a gt $b;
  
if($c == 1)
{
    print"String1 is greater than String2";
}
else
{
    print"String1 is not greater than String2";
}
输出:
String1 is greater than String2

示例 2:

#!/usr/local/bin/perl
  
# Initializing Strings
$a = "Geeks";
$b = "GeeksWelcome";
  
# Comparing the strings using gt operator
$c = $a gt $b;
  
if($c == 1)
{
    print"String1 is greater than String2";
}
else
{
    print"String1 is not greater than String2";
}
输出:
String1 is not greater than String2