RegEx in Editor - Change HTML Tag

The power of Reg Expressions for changing an HTML tag in bulk files

UltraEdit

Find String:    <span id="nsrTitle">^(*^)</span> 
Replace String: <h1>^1</h1>

This converts a span (that has a title) into a <H1> tag. Better for bookmarks

Notepad++

Find String:    <span id="nsrTitle">(.*)</span> 
Replace String: <h1>$1</h1>

This converts a span (that has a title) into a <H1> tag. Better for bookmarks