Perl 中的 q 運算符可以用來代替單引號。它使用一組括號將字符串括起來。
用法: q (string)
返回:單引號字符串。
注意:可以使用任何一組分隔符,而不僅僅是括號。
示例 1:
#!/usr/bin/perl -w
# Passing string to q operator
print(q(Geeks For Geeks));
輸出:
Geeks For Geeks
示例 2:
#!/usr/bin/perl -w
# Defining an Integer variable
$var = 25;
# Passing string and variable to
# the q operator
print(q(Welcome to GFG, $var));
輸出:
Welcome to GFG, $var
相關用法
- Perl q用法及代碼示例
- Perl qq用法及代碼示例
- 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 | q operator。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。