精簡扼要的 Perl 課程講義(六):常規表達式(Regular ...
常規表達式(一) # 常規表達式(一) (Regular expression) # (1) 基本樣式比對 "=~" 與 "!~" # 比對字串,成功傳回 true # 失敗傳回 false " Hello World " =~ / World /; $string = " Hello World! "; # 若比對成功,則 print print " It matches \n " if $string =~ / World /; # 若比對 ......