Time of Update: 2014-08-19
標籤:光碟片鏡像 linux verify 作業系統 media 參考:http://hi.baidu.com/pengduo66/item/abfe454f81cdb7e5a4c06675 情境說明:選擇迷你安裝linux作業系統,沒有安裝perl工具。由於網路的故障問題,無法使用yum install perl
Time of Update: 2014-10-09
標籤:perlPerl常用文法記錄##包的切換和調用其它包的方式#package A;#my $a=10;#package B;#print $A::a;#print $a; ##local局部標識符的使用#$aa=20;#{#local $aa;#$aa=10;#print "$aa \n";##}#print $aa;##別名的使用=comment$b=10;$a=1;$c=200
Time of Update: 2014-10-08
標籤:style blog color 使用 ar for strong 檔案 sp 今天做一份東西需要對一些檔案特定的欄位進行修改,其實這改一下很方便,甚至不需要去寫一個指令碼,但是為了方便使
Time of Update: 2014-09-19
標籤:blog ar div sp log c ef size 管理 基本用法 #初始化%h為空白數組 %h={}; #用數組初始化%h為a=>1,b=>2
Time of Update: 2014-09-19
標籤:blog 使用 ar div sp log c ef c++ perl不像C/C++有各種變數類型。perl中的變數類型通過上下文來確定,到底是字串還是整形變數。例如: my
Time of Update: 2014-09-16
標籤:des blog os 使用 ar 檔案 2014 art sp 實驗室做FPGA開發時經常用到Verilog,代碼規範成為一個問題,於是乎寫了一個Perl指令碼對代碼進行正常化,主要是進
Time of Update: 2014-09-16
標籤:blog ar div sp log c ef r bs 1)預設的INC如下: @INC: C:/Perl/site/lib
Time of Update: 2014-09-15
標籤:style blog http color ar for 檔案 資料 div perl中經常有會遇到處理CSV格式的檔案,這樣的檔案類似二維數組,因此實際上的操作時對二維數組的操作了。對這
Time of Update: 2014-09-14
標籤:style blog http color 使用 ar for 檔案 div 系統:Windows語言:Perl工具:Notepad++/cmd目前要用PERL來分析一下頁面。然後組群下載
Time of Update: 2014-09-09
標籤:style color os io 使用 ar strong for 資料 1、$position =
Time of Update: 2014-09-09
標籤:style blog http color io ar for 檔案 art 源碼之前,了無秘密,直接上源碼:if(@ARGV!=2){ die "Usage: $0
Time of Update: 2014-09-03
標籤:des style os io ar for art cti sp Perl is a high-level ,
Time of Update: 2014-09-01
標籤:perl sql dbconnect split url 1)url 判斷是否合法: /^(http:\/\/|https:\/\/)?((?:[A-Za-z0-9]+-[A-Za-z0-9]+|[A-Za-z0-9]+)\.)+([A-Za-z0-9]+)[\/\?\
Time of Update: 2014-08-24
標籤:style blog color os 使用 io ar div log 發現居然沒有輸入文本和輸出文本,折騰了一晚上,到了半夜終於搞懂了:官方的Manual上這麼寫的:The
Time of Update: 2014-08-22
標籤:style color 使用 os 檔案 ar line new size Perl class is a Perl package
Time of Update: 2014-08-17
標籤:perl 模組 1、模組來源:隨Perl發行版本一起打包、從CPAN下載2、閱讀模組文檔:perldoc CGI3、安裝模組makemaker方式:指定安裝目錄:Module::build方式:cpan方式:4、File::basename模組5、僅選用模組的部分函數匯入引用列表即可10、不引入任何函數
Time of Update: 2014-08-07
標籤:style 使用 檔案 for amp 學習 程式 不同的 1、在Perl中,子程式名與變數名屬於不同的命名空間,可以使用同一個名字分別命名子程式和變數,但不建議這樣使用。2、子程式的定義是全域的,同名的子程式後邊的會覆蓋
Time of Update: 2014-08-07
標籤:perl linux 1、PerlPractical Extraction and Report Language:實用摘錄與報表語言2、多行注釋(1) =需要頂格寫= descriptionstatement;=cut(2)末尾的description需要頂格寫<<description; print
Time of Update: 2014-08-06
標籤:http 檔案 資料 ar div html htm .net \w 匹配一個字母、數字或底線,相當於[a-zA-Z_0-9]\s 匹配一個Null 字元\d 匹配一個數字\b
Time of Update: 2014-07-24
標籤:資料 for re c ar 程式 perl命令列參數預設儲存在perl自訂變數@ARGV中。#判斷參數個數是否為0,根據上下文環境這裡就是==符號,這裡@ARGV指的是命令列參數數組元素個數if(@ARGV == 0)#