描述
該函數根據子程序 SUBNAME 或 BLOCK 指定的匿名子程序對 LIST 進行排序。如果未指定 SUBNAME 或 BLOCK,則按照正常的字母順序排序。
如果指定了 BLOCK 或 SUBNAME,則子例程應根據數組元素的排序方式返回小於、大於或等於 0 的整數
用法
以下是此函數的簡單語法 -
sort SUBNAME LIST sort BLOCK LIST sort LIST
返回值
此函數返回排序列表。
示例
以下是顯示其基本用法的示例代碼 -
#!/usr/bin/perl -w
@array = ("z", "w", "r", "i", "b", "a");
print("sort() ", sort(@array), "\n");
執行上述代碼時,會產生以下結果 -
sort() abirwz
相關用法
- Perl sort()用法及代碼示例
- Perl sin()用法及代碼示例
- Perl split用法及代碼示例
- Perl shmctl用法及代碼示例
- Perl splice用法及代碼示例
- Perl sqrt()用法及代碼示例
- Perl setpriority用法及代碼示例
- Perl semget用法及代碼示例
- Perl send用法及代碼示例
- Perl sysread用法及代碼示例
- Perl setpwent用法及代碼示例
- Perl sethostent用法及代碼示例
- Perl scalar用法及代碼示例
- Perl sprintf()用法及代碼示例
- Perl setgrent用法及代碼示例
注:本文由純淨天空篩選整理自 Perl sort Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。