in reply to Re: BBCodes, removing [URL's
in thread BBCodes, removing [URL's

Thanks, will check that out :)

Cheers

Andy

Replies are listed 'Best First'.
Re^3: BBCodes, removing [URL's
by ultranerds (Hermit) on Apr 23, 2009 at 15:27 UTC
      NM, managed to sort with:

      $test_string =~ s/lien/url/sig; # the parser doesn't seem to like this $test_string =~ s/\[url "(\?\%\:\/a-zA-Z0-9_\-\.+)"\]/url=$1/sig;

      Cheers

      Andy