What do you mean it "isn't working"? Are you sure your data really is what you think it is? Note that you don't need to \ the " inside the regexp, though it doesn't hurt. Here's test code that works for me.
#!/usr/bin/perl -lw use strict; use warnings; while(<DATA>){ chomp; my @data = split /\t/; my $ddrul = $data[7]; $ddrul =~ s/\"//g; print "'$ddrul'"; } __DATA__ EST-NY 234 5-Oct Springfield MA Springfield College +Townhouse Conference Room http://www.spfldcol.edu/home.nsf/welcome +/visit/directionsc EST-NY 923 18-Oct Salisbury MD Wor Wic Community Colleg +e http://www.worwic.edu/campus/directions.pdf EST-NY 886 19-Oct Frederick MD Hood College http +://www.hood.edu/welcome_to_hood/index.cfm?pid=_maps.htm#a1 SW 328 19-Oct Houston TX University of Houston - Clear +Lake "http://prtl.uhcl.edu/portal/page?_pageid=328,217631,328_ +217645&_dad=portal&_schema=PORTALP"
Prints:
'http://www.spfldcol.edu/home.nsf/welcome/visit/directionsc' 'http://www.worwic.edu/campus/directions.pdf' 'http://www.hood.edu/welcome_to_hood/index.cfm?pid=_maps.htm#a1' 'http://prtl.uhcl.edu/portal/page?_pageid=328,217631,328_217645&_dad=p +ortal&_schema=PORTALP'

In reply to Re: Replacing a pesky pair of quotes. by Eimi Metamorphoumai
in thread Replacing a pesky pair of quotes. by hmbscully

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.