Hi Guys,
I have the following string
my $test=" check out this link it could be
and a regex which follows:
$test=~s/[^\/] http:\/\/
what i want to happen..is if it finds want it to add http:// in front of it.
But..if http:// is already in front of don't do anything.
My above regex doesn't quite do that exactly..anyone have any ideas
TIA
troy
I have the following string
my $test=" check out this link it could be
and a regex which follows:
$test=~s/[^\/] http:\/\/
what i want to happen..is if it finds want it to add http:// in front of it.
But..if http:// is already in front of don't do anything.
My above regex doesn't quite do that exactly..anyone have any ideas
TIA
troy