@array = (1,2,3);

或者是 @array = qw(1 2 3);

print 出來的 @array 長這樣 123

把陣列搞成字串 → $string = join ‘,’ , @array;

print $string 長這樣 1,2,3

那要把字串搞成陣列 → @array2 = split (/,/,$string);

Related posts 相關文章
2020 年迎來了 PHP 8 與 Perl 7
More...
安裝 perl 5.8.1 版本 – 草記
More...
perl 備註
More...
perl 隨機產生 password 密碼
More...

作者

留言

撰寫回覆或留言

發佈留言必須填寫的電子郵件地址不會公開。