Hi,
I extract a line from a file,and in this line i want to take the name of my file;
The line look like this
PROCESS FILE="test.sh" SIZE="32" LOCATION="C:"
In this line i want just the name : test.sh
I ve try this
but in output i've the all line
Why ?
Thanks
I extract a line from a file,and in this line i want to take the name of my file;
The line look like this
PROCESS FILE="test.sh" SIZE="32" LOCATION="C:"
In this line i want just the name : test.sh
I ve try this
Code:
my $x = 'PROCESS FILE="test.sh" SIZE="32" LOCATION="C:"';
$x =~ s/FILE="(\w+)" SIZE="(\d+)"$/$1/
print "name : $x\n"
but in output i've the all line
Why ?
Thanks