Perl 中的qq() 運算符可以用來代替雙引號。它使用一組括號將字符串括起來。
用法: qq (string)
返回:
雙引號字符串
注意:任何一組分隔符都可以用來代替括號。
示例 1:
#!/usr/bin/perl -w
# Passing string to qq operator
print(qq(Welcome to GeeksForGeeks));
輸出:
Welcome to GeeksForGeeks
示例 2:
#!/usr/bin/perl -w
# Defining an Integer variable
$var = 15;
# Passing string and variable to
# the qq operator
print(qq(GeeksforGeeks, $var));
輸出:
GeeksforGeeks, 15
相關用法
- Perl qq用法及代碼示例
- Perl q用法及代碼示例
- Perl qr用法及代碼示例
- Perl qw用法及代碼示例
- Perl qx用法及代碼示例
- Perl quotemeta()用法及代碼示例
- 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用法及代碼示例
- Perl endhostent用法及代碼示例
- Perl endnetent用法及代碼示例
- Perl endprotoent用法及代碼示例
- Perl endpwent用法及代碼示例
- Perl endservent用法及代碼示例
注:本文由純淨天空篩選整理自Code_Mech大神的英文原創作品 Perl | qq operator。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。