I have a HTML file which has many expression like
/v/global/nagargaurav/CALL::ROWS_ARE_MATCHED.log
I have my code like this
my $dir = /v/global/nagargaurav/;
$html =~ s/$dir\\/(.*?)::(.*?)\.log/$1 : $2/g;
print $html;
it gives the output –
CALL : ROWS_ARE_MATCHED
But what i need is to output like this
**CALL : ROWS ARE MATCHED**
and there are many such lines but the expression is same.
can anybody help me with this.
1 Answer