I have been researching and fine tuning a regular expression to find http, https and ftp addresses within the body of text so that they can be shortened and automatically linked in PHP code.
This is my latest regex which seems to work OK:
((http|https|ftp)\://[a-zA-Z0-9\-\.]+\.[a-zA-Z]{2,3}(:[a-zA-Z0-9]*)?/?([a-zA-Z0-9:\-\._\?\,\'/\\\+&%\$#\=~])*[^\.\,\)\(\s])
Appreciation:
- RegexBuddy : Software for creating, testing and using regular expressions.
- EditPad Pro : A powerful text editor especially for programming.
Leave a Reply