Entries tagged with ‘Links’

On Campus Pages Brainstorming

Not many pages on the Gustavus website receive as much traffic as the On Campus page--particularly the section designed for students. We have been brainstorming some ideas on how to improve these pages for a while and want to see what you think about what we have in store.

Regular Expression to find HTML links with title attributes

I recently needed to write a regular expression to find HTML and XHTML links with title attributes (<a href="http://www.gustavus.edu" title="Visit the Gustavus Adolphus College homepage">Gustavus</a>). Here it is: <a[[:print:]]*title=('|"")?(.*?(?=1))1?[[:print:]]*>([[:print:]]*)</a> Note that the [[:print:]] parts are applicable to ColdFusion regular expressions and would have to be changed to something else if you aren’t using ColdFusion. Additionally, […]