Jump to content

URL's!


jxrd

Recommended Posts

Hello,

 

I'm trying to match urls to wrap them with bbcode tags. I have this working:

 

<?php
$s = 'http://www.site.co.uk/page.php?action=something';
echo preg_replace('/(http\:\/\/|www\.)+([a-z0-9-_]+)\.(.*?)$/', '[url]http://www.$2.$3[/url]', $s);
?>

However, I wish to only match urls which don't already have url tags around them already.

I've tried stuff like this:

<?php
$s = 'http://www.site.co.uk/page.php?action=something';
echo preg_replace('/(^\[url\])(http\:\/\/|www\.)+([a-z0-9-_]+)\.(.*?)$(^\[\/url\])/', '[url]http://www.$3.$4[/url]', $s);
?>

But I can't seem to get it to work.

 

It's probably something really simple. Any help would be awesome.

Link to comment
Share on other sites

Nice one - I never even knew they existed.

 

End product:

preg_replace('/^(?!\[url.*?\](\s)?)(http\:\/\/|www\.)+([a-z0-9-_]+)\.(.*?)$/', '[url]http://www.$4.$5[/url]', $code);

 

 

Oh hey, I just noticed a bug for you - The exact same code i put up there, but in php tags will look like this: (attempts to convert my url into bbcode despite the fact that it's in code tags)

 

preg_replace('/^(?!\[url.*?\](\s)?)(http\:\/\/|www\.)+([a-z0-9-_]+)\.(.*?)$/', '[url=http://www.$4.$5]http://www.$4.$5[/url]', $code);

Just thought I'd let you know.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.