>
>I have a function and can't seem to get this figured out.  I have
>apostrohe's in the file that I am pulling down, however I need to remove
>all
>of the apostrophe's from the file before putting the file into the system.


1.  I'm not sure if ' has to be escaped when in a regex... so
try one the following:

s/'//g #get rid of all ' from the line

or
s/\'//g #same as above, but using the \ to escape the ' just in case the '
          #does some funny things in a regular expression.

willy 

:)

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to