<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Comments on snippet: 'Improvement of URL interpretation with regex'</title>
    <description>Snipplr comments feed</description>
    <link>https://ipv6.snipplr.com/</link>
    <lastBuildDate>Thu, 09 Apr 2026 10:19:39 +0000</lastBuildDate>
    <item>
      <title>keevkilla said on 02/Aug/2010</title>
      <link>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</link>
      <description>&lt;p&gt;thank you for your remark, I'll see what I can do and post a patch when found.&lt;/p&gt;</description>
      <pubDate>Mon, 02 Aug 2010 15:47:28 UTC</pubDate>
      <guid>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</guid>
    </item>
    <item>
      <title>keevkilla said on 03/Aug/2010</title>
      <link>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</link>
      <description>&lt;p&gt;thank you for your remark, I'll see what I can do and post a patch when found.&lt;/p&gt;</description>
      <pubDate>Tue, 03 Aug 2010 15:55:27 UTC</pubDate>
      <guid>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</guid>
    </item>
    <item>
      <title>jm1248 said on 07/Feb/2011</title>
      <link>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</link>
      <description>&lt;p&gt;To: tuxfede&#13;
&#13;
I tried this with the trailing period e.g. mysite.org. and it worked perfectly.&#13;
&#13;
BTW keevkilla; this is a very nice piece of work - I like the whole site.&#13;
&#13;
John McKean - Toronto, Canada&lt;/p&gt;</description>
      <pubDate>Mon, 07 Feb 2011 01:41:50 UTC</pubDate>
      <guid>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</guid>
    </item>
    <item>
      <title>jm1248 said on 08/Feb/2011</title>
      <link>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</link>
      <description>&lt;p&gt;What I wanted was a javascript snippet and keevkilla's was PHP.  Backslashing the slashes  satisfies  JS and this snippet works (for me).  However, it does capture punctuation that follows an html append.&#13;
&#13;
&#13;
function clickify_links($text)&#13;
{&#13;
 return $text.replace(/((https?:\/\/)?([-\w]+\.[-\w\.]+)+\w(:\d+)?(\/([-\w\_\.]*(\?\S+)?)?)*)/gim, "&lt;a href='http://"+"$1"+"'&gt;"+"$1"+"&lt;/a&gt;");&#13;
}&#13;
&#13;
As a test:&#13;
&#13;
function test()&#13;
{&#13;
 $text = "your-site,net http://yoursite.com. bb dd mysite.org! ..."&#13;
 $text = $text+"yoursite.com .yoursite.com! https://yoursite.com: yoursite.com? "&#13;
 $text = $text+"yoursite.subsite.com/dir/blurb.html?name=billy-jean.&lt;/p&gt;</description>
      <pubDate>Tue, 08 Feb 2011 00:05:10 UTC</pubDate>
      <guid>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</guid>
    </item>
    <item>
      <title>jm1248 said on 08/Feb/2011</title>
      <link>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</link>
      <description>&lt;p&gt;Hmm - my last comment got hopelessly mangled.  Please ignore it&lt;/p&gt;</description>
      <pubDate>Tue, 08 Feb 2011 00:09:27 UTC</pubDate>
      <guid>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</guid>
    </item>
    <item>
      <title>onigetoc said on 23/Jul/2011</title>
      <link>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</link>
      <description>&lt;p&gt;it doesnt find query link like http://www.mysite.com/?test=test/&#13;
I.E. some long link with path, query or other character&#13;
http://www.mysite.com/#test&lt;/p&gt;</description>
      <pubDate>Sat, 23 Jul 2011 00:40:57 UTC</pubDate>
      <guid>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</guid>
    </item>
    <item>
      <title>Criptt said on 31/Mar/2012</title>
      <link>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</link>
      <description>&lt;p&gt;Great improvement but when a user imputs a string like: www.mysite.com the link will be incorrect because in the link-tag you wont have http:// before your result.&#13;
Therefor the url of the user shall try to redirect towards a page into your own site.&#13;
Is their a way to solve this?&lt;/p&gt;</description>
      <pubDate>Sat, 31 Mar 2012 01:12:39 UTC</pubDate>
      <guid>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</guid>
    </item>
    <item>
      <title>Criptt said on 31/Mar/2012</title>
      <link>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</link>
      <description>&lt;p&gt;This is a simple solution for www domains&#13;
$text= preg_replace('@((https?://)?([-\w]+\.[-\w\.]+)+\w(:\d+)?(/([-\w/_\.]*(\?\S+)?)?)*)@', '&lt;a href="$1"&gt;$1&lt;/a&gt;', $text);&#13;
$text= str_replace("href=\"www.","href=\"http://www.",$text);&#13;
&#13;
but when the user inserts a url like: mail.mysite.com it wont work. It wont even pass the preg_replace funtion.&lt;/p&gt;</description>
      <pubDate>Sat, 31 Mar 2012 01:39:28 UTC</pubDate>
      <guid>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</guid>
    </item>
    <item>
      <title>seoexpertim said on 11/Jun/2024</title>
      <link>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</link>
      <description>&lt;p&gt;I am very much pleased with the contents you have mentioned. I wanted to thank you for this great article.	&lt;a href="https://coffeebankcafe.com"&gt;demo slot&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 11 Jun 2024 17:27:41 UTC</pubDate>
      <guid>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</guid>
    </item>
    <item>
      <title>seoexpertim said on 12/Jun/2024</title>
      <link>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</link>
      <description>&lt;p&gt;cool stuff you have got and you keep update all of us.	&lt;a href="https://motherlandafricanfoodmarket.com"&gt;slot gampang menang&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 12 Jun 2024 21:14:24 UTC</pubDate>
      <guid>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</guid>
    </item>
    <item>
      <title>seoexpertim said on 13/Jun/2024</title>
      <link>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</link>
      <description>&lt;p&gt;thanks for the rosy weblog. It turned into without a doubt useful for me. i am happy i found this blog. thanks for sharing bearing in mind us,I too constantly examine some thing secondary out of your pronounce.	&lt;a href="https://www.ninemilestationmusic.com"&gt;sbobet88&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 13 Jun 2024 08:41:00 UTC</pubDate>
      <guid>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</guid>
    </item>
    <item>
      <title>seoexpertim said on 13/Jun/2024</title>
      <link>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</link>
      <description>&lt;p&gt;I recently came across your blog and have been reading along. I thought I would leave my first comment. I don’t know what to say except that I have enjoyed reading.	&lt;a href="https://www.gardensmedicalsupplies.com"&gt;slot deposit 5000&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 13 Jun 2024 11:27:14 UTC</pubDate>
      <guid>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</guid>
    </item>
    <item>
      <title>seoexpertim said on 13/Jun/2024</title>
      <link>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</link>
      <description>&lt;p&gt;his was really very informative site for me. I really liked it. Thanks a lot!.	&lt;a href="https://eatatlorenzos.com"&gt;rtp live&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 13 Jun 2024 13:57:20 UTC</pubDate>
      <guid>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</guid>
    </item>
    <item>
      <title>seoexpertim said on 13/Jun/2024</title>
      <link>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</link>
      <description>&lt;p&gt;You have done a great job on this article. It’s very readable and highly intelligent. You have even managed to make it understandable and easy to read. You have some real writing talent. Thank you.	&lt;a href="https://eliterepeatsshop.com"&gt;slot deposit 5000&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 13 Jun 2024 16:17:52 UTC</pubDate>
      <guid>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</guid>
    </item>
    <item>
      <title>seoexpertim said on 15/Jun/2024</title>
      <link>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</link>
      <description>&lt;p&gt;This is a good post. This post gives truly quality information. I’m definitely going to look into it. Really very useful tips are provided here. Thank you so much. Keep up the good works.	&lt;a href="https://www.ownrosario.com/"&gt;joker388&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 15 Jun 2024 10:26:23 UTC</pubDate>
      <guid>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</guid>
    </item>
    <item>
      <title>seoexpertim said on 15/Jun/2024</title>
      <link>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</link>
      <description>&lt;p&gt;I guess I am not the only one having all the enjoyment here! keep up the good work...	&lt;a href="https://www.salonrue52.com/"&gt;slot777&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 15 Jun 2024 12:23:19 UTC</pubDate>
      <guid>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</guid>
    </item>
    <item>
      <title>seoexpertim said on 16/Jun/2024</title>
      <link>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</link>
      <description>&lt;p&gt;Your content gives readers things to think about in an interesting way. Thank you for your clear information.	&lt;a href="https://villageofhempsteadespri.org"&gt;Slot depo 5k&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 16 Jun 2024 12:18:16 UTC</pubDate>
      <guid>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</guid>
    </item>
    <item>
      <title>seoexpertim said on 21/Jun/2024</title>
      <link>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</link>
      <description>&lt;p&gt;Everything has its value. Thanks for sharing this informative information with us. GOOD works!	&lt;a href="https://themixdalston.com/"&gt;mahjong ways 2&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 21 Jun 2024 10:16:56 UTC</pubDate>
      <guid>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</guid>
    </item>
    <item>
      <title>seoexpertim said on 21/Jun/2024</title>
      <link>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</link>
      <description>&lt;p&gt;thank you for substitute invincible article. where else may want to all of us collect that saintly of make public in any such obtain quirk of writing? i've a presentation adjacent week, and i am concerning the see for such facts.	&lt;a href="https://www.lovencare.net"&gt;rtp slot&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 21 Jun 2024 19:03:12 UTC</pubDate>
      <guid>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</guid>
    </item>
    <item>
      <title>seoexpertim said on 22/Jun/2024</title>
      <link>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</link>
      <description>&lt;p&gt;We have sell some products of different custom boxes.it is very useful and very low price please visits this site thanks and please share this post with your friends.	&lt;a href="https://www.thejillianfoundation.org/"&gt;sbobet88&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 22 Jun 2024 07:45:29 UTC</pubDate>
      <guid>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</guid>
    </item>
    <item>
      <title>seoexpertim said on 22/Jun/2024</title>
      <link>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</link>
      <description>&lt;p&gt;The reference you've got published is absolutely beneficial. The sites you have referred turned into pleasing. thank you for sharing.	&lt;a href="https://pafipcmeranti.org/"&gt;slot gacor&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 22 Jun 2024 12:35:59 UTC</pubDate>
      <guid>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</guid>
    </item>
    <item>
      <title>zebron7615 said on 15/Jul/2024</title>
      <link>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</link>
      <description>&lt;p&gt;&lt;a href="https://www.liveboston617.com"&gt;bolatangkas&lt;/a&gt; I appreciate the research that went into this blog, it's clear the author is well-informed.&lt;/p&gt;</description>
      <pubDate>Mon, 15 Jul 2024 10:00:55 UTC</pubDate>
      <guid>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</guid>
    </item>
    <item>
      <title>zebron7615 said on 16/Jul/2024</title>
      <link>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</link>
      <description>&lt;p&gt;The way you tied everything together at the conclusion left me feeling satisfied and informed. Well done! The way you tied everything together at the conclusion left me feeling satisfied and informed. Well done!&lt;/p&gt;</description>
      <pubDate>Tue, 16 Jul 2024 13:50:25 UTC</pubDate>
      <guid>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</guid>
    </item>
    <item>
      <title>zebron7615 said on 16/Jul/2024</title>
      <link>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</link>
      <description>&lt;p&gt;&lt;a href="https://hyperxcomputers.net"&gt;idn slot&lt;/a&gt; The way you tied everything together at the conclusion left me feeling satisfied and informed. Well done!&lt;/p&gt;</description>
      <pubDate>Tue, 16 Jul 2024 13:50:41 UTC</pubDate>
      <guid>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</guid>
    </item>
    <item>
      <title>seoexpertim said on 20/Jul/2024</title>
      <link>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</link>
      <description>&lt;p&gt;I’ve been surfing online more than three hours today, yet I never found any interesting article like yours. It’s pretty worth enough for me. In my opinion, if all webmasters and bloggers made good content as you did, the web will be a lot more useful than ever before.	&lt;a href="https://longwoodherbshop.com/"&gt;slot pulsa tanpa potongan&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 20 Jul 2024 09:27:40 UTC</pubDate>
      <guid>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</guid>
    </item>
    <item>
      <title>seoexpertim said on 20/Jul/2024</title>
      <link>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</link>
      <description>&lt;p&gt;thank you for taking the length to discuss this, I vibes strongly that adoration and admittance greater in perform to this difficulty. If practicable, which include earnings know-how, could you thoughts updating your weblog lower back subsidiary opinion? it’s miles enormously useful for me.	&lt;a href="https://www.michaelfarren.com"&gt;judi bolatangkas&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 20 Jul 2024 16:28:19 UTC</pubDate>
      <guid>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</guid>
    </item>
    <item>
      <title>seoexpertim said on 20/Jul/2024</title>
      <link>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</link>
      <description>&lt;p&gt;Thank you because you have been willing to share information with us. we will always appreciate all you have done here because I know you are very concerned with our.	&lt;a href="https://thebudranchgardencenter.com"&gt;slot online&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 20 Jul 2024 20:02:36 UTC</pubDate>
      <guid>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</guid>
    </item>
    <item>
      <title>seoexpertim said on 21/Jul/2024</title>
      <link>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</link>
      <description>&lt;p&gt;Extremely helpful information specially the last part I care for such info a lot. I was seeking this particular information for a very long time. Thank you and good luck.	&lt;a href="https://altrarentalsltd.com"&gt;situs roulette&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 21 Jul 2024 06:13:26 UTC</pubDate>
      <guid>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</guid>
    </item>
    <item>
      <title>seoexpertim said on 21/Jul/2024</title>
      <link>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</link>
      <description>&lt;p&gt;This is a good post. This post gives truly quality information. I’m definitely going to look into it. Really very useful tips are provided here. Thank you so much. Keep up the good works.	&lt;a href="https://goodwinautosales.com"&gt;judi online&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 21 Jul 2024 19:11:34 UTC</pubDate>
      <guid>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</guid>
    </item>
    <item>
      <title>seoexpertim said on 21/Jul/2024</title>
      <link>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</link>
      <description>&lt;p&gt;Everything has its value. Thanks for sharing this informative information with us. GOOD works!	&lt;a href="https://bluenosepitbullpups.com"&gt;slot penghasil saldo dana&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 21 Jul 2024 20:27:12 UTC</pubDate>
      <guid>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</guid>
    </item>
    <item>
      <title>seoexpertim said on 22/Jul/2024</title>
      <link>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</link>
      <description>&lt;p&gt;thank you for substitute invincible article. where else may want to all of us collect that saintly of make public in any such obtain quirk of writing? i've a presentation adjacent week, and i am concerning the see for such facts.	&lt;a href="https://csmresita.com"&gt;Link Alternatif Tokyo88&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 22 Jul 2024 07:48:47 UTC</pubDate>
      <guid>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</guid>
    </item>
    <item>
      <title>seoexpertim said on 22/Jul/2024</title>
      <link>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</link>
      <description>&lt;p&gt;i never know the use of adobe shadow until i saw this post. thank you for this! this is very helpful.	&lt;a href="https://www.sword-codify.com"&gt;slot deposit dana&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 22 Jul 2024 10:42:51 UTC</pubDate>
      <guid>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</guid>
    </item>
    <item>
      <title>seoexpertim said on 22/Jul/2024</title>
      <link>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</link>
      <description>&lt;p&gt;thanks due to the fact you have been precise-natured to percentage opinion subsequent to us. we are able to continually recognize all you have finished here because I understand you are selected worried thinking about our.	&lt;a href="https://www.freebirdtattoo.com"&gt;slot deposit pulsa indosat&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 22 Jul 2024 12:54:18 UTC</pubDate>
      <guid>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</guid>
    </item>
    <item>
      <title>ScatterHitam4614 said on 25/Aug/2025</title>
      <link>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</link>
      <description>&lt;p&gt;Great Work , we look foward for another helpful post. &lt;a href="https://mabosplayweb.com"&gt;Scatter Hitam&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 25 Aug 2025 04:22:48 UTC</pubDate>
      <guid>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</guid>
    </item>
    <item>
      <title>ScatterHitam4614 said on 25/Aug/2025</title>
      <link>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</link>
      <description>&lt;p&gt;Thank you for this helpful information &lt;a href="https://scattermabosplay.com"&gt;Mabosplay Scatter Hitam&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 25 Aug 2025 04:23:04 UTC</pubDate>
      <guid>https://ipv6.snipplr.com/view/36992/improvement-of-url-interpretation-with-regex</guid>
    </item>
  </channel>
</rss>
