in reply to perl script to remove part of double quote
A string substitute operation like this will not yield an error except in the case where the string that is being processed is undefined. In addition, $_=~ is not needed as the substitute operator will work on $_ by default. Likely cause of your problem is that you are not setting the default $_ variable. Show your code.
|
|---|