monqy blog
このブログを検索
2013/01/26
正規表現メモ
20130125 のような文字列を年月日にわける。
if($date =~ /(\d{4})(\d{2})(\d{2})/){
$yy = $1;
$mm = $2;
$dd = $3;
}
次の投稿
前の投稿
ホーム