in reply to Strip HTML line breaks from list of URLs
Two ideas: just snip them off with substr. $_ = substr $_, 0, length() - 4 for @Old_URL. Or use a a substitution: s{<br>}{} for @Old_URL.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: (2) Strip HTML line breaks from list of URLs
by Maclir (Curate) on May 09, 2003 at 19:47 UTC | |
by diotalevi (Canon) on May 09, 2003 at 21:46 UTC |