Hello,
I am new to perl. So i was wondering if anyone can tell what the following line mean.
$event_id =~ /^(\d+)(_\d)?(\d*)$/o;
$event_id = "$1$2$3";
if i want event_id to in the format of $id_0_$i where i is 0 to x, how would i change those line.
Thank You,
Roj
I am new to perl. So i was wondering if anyone can tell what the following line mean.
$event_id =~ /^(\d+)(_\d)?(\d*)$/o;
$event_id = "$1$2$3";
if i want event_id to in the format of $id_0_$i where i is 0 to x, how would i change those line.
Thank You,
Roj