DESCR: "10GE SR"
i need match this above part which is part of my rest of the string. Im using regex in perl. i tried
if ($line =~ /DESCR: \"([a-zA-Z0-9)\"/) {
print "$1\n";
}
but im not able to understand how to consider spaces inside my string. these spaces can occur any where within the quotes. can someone help me out.