'情商' 运算符在珀尔是用于检查两个字符串是否相等的字符串比较运算符之一。它用于检查其左侧的字符串是否与右侧的字符串按字符串相等。
用法: String1 eq String2
返回:1 如果左参数等于右参数
示例 1:
#!/usr/local/bin/perl
# Initializing Strings
$a = "Welcome";
$b = "Geeks";
# Comparing the strings using eq operator
$c = $a eq $b;
if($c == 1)
{
print"String1 is equal to String2";
}
else
{
print"String1 is not equal to String2";
}
输出:
String1 is not equal to String2
示例 2:
#!/usr/local/bin/perl
# Initializing Strings
$a = "Geeks";
$b = "Geeks";
# Comparing the strings using eq operator
$c = $a eq $b;
if($c == 1)
{
print"String1 is equal to String2";
}
else
{
print"String1 is not equal to String2";
}
输出:
String1 is equal to String2
相关用法
- Perl endhostent用法及代码示例
- Perl endnetent用法及代码示例
- Perl endprotoent用法及代码示例
- Perl endpwent用法及代码示例
- Perl endservent用法及代码示例
- Perl eof用法及代码示例
- Perl exec用法及代码示例
- Perl exists用法及代码示例
- Perl each()用法及代码示例
- Perl exists()用法及代码示例
- Perl exp用法及代码示例
- Perl abs用法及代码示例
- Perl alarm用法及代码示例
- Perl bless用法及代码示例
- Perl caller用法及代码示例
- Perl chmod用法及代码示例
- Perl chomp用法及代码示例
- Perl chop用法及代码示例
- Perl chr用法及代码示例
- Perl continue用法及代码示例
- Perl crypt用法及代码示例
- Perl dbmclose用法及代码示例
- Perl dbmopen用法及代码示例
- Perl defined用法及代码示例
- Perl dump用法及代码示例
注:本文由纯净天空筛选整理自Code_Mech大神的英文原创作品 Perl | eq operator。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。