After trying N+1 times with regex in Perl: I have the following problem: I need to retrieve this:
232310..1.3 3213 2.4 "$250 For My jacket" (2012)
I am trying to retrieve it via:
if ( $line=~m/^\s+(\d+|\.+)\s+(\d+)\s+(\d+|\.+)\s+(\^"&(\w*|\s*|\D*)"$)\s*\((\d+)\s*/){
$ID=$1;
$Amount=$2;
$Size=$3;
$Item=$4;
$Year=$5;
It does not work