hi,
i have an script perl as:
my($a)= "a" ;
my($b)="b";
if(/^(\d+)\t$a\t.*?\t$b.\t([^\t]+)\t2.3.22 aco/){
...
}
My input file lines is style as:
58702 a 00:13 b2 00:02 0EP
7 33 1,0 t2.3.22 aco 55.33.kk
...
I want to check this file with my script, but not detected regular expression. Can anybody help me?
Thanks.
i have an script perl as:
my($a)= "a" ;
my($b)="b";
if(/^(\d+)\t$a\t.*?\t$b.\t([^\t]+)\t2.3.22 aco/){
...
}
My input file lines is style as:
58702 a 00:13 b2 00:02 0EP

...
I want to check this file with my script, but not detected regular expression. Can anybody help me?
Thanks.