正規表現 最長マッチが、機能しない。
# 正規表現 最長マッチが、機能しない。
#
# Windows XP(sp3) ActivePerl
#
# This is perl 5, version 12, subversion 3 (v5.12.3) built for MSWin32-x86-multi-thread
# (with 9 registered patches, see perl -V for more detail)
#
# Copyright 1987-2010, Larry Wall
#
# Binary build 1204 [294330] provided by ActiveState http://www.ActiveState.com
# Built Feb 9 2011 14:38:22
#
use strict;
use utf8;
use Encode;
my $doc = "(L)12×(H)34×(W)56\n";
$doc =~ s%(\([LHW]\)(\d+))([^×cm])%$1cm$3%ig; # ←この部分
print encode("cp932", $doc);
{出力結果}
(L)1cm2×(H)3cm4×(W)56cm