With the inception of Windows XP on October 25, 2001 Microsoft offered a beautiful new font named Papyrus. It was different, exciting, and new. It wasn’t well suited to copy since it was damn hard to read when small, so it made its mark in the world of logos and headlines. It was the day everyone with enough money to buy XP became a logo designer.
It’s use after 2002 has been strictly banned worldwide for …
More+
Say you need to find and replace text that differs but the term is similar like <span class=1> <a href=differs.htm> Something</a> the href differs but you need the <span class> moved inside the tag…
<span class=”link1″><span class=”link2″><a href=anything.html>
use:
<span class=”link1″><span class=”link2″><a href=(\w*).html>
replace with:
<span class=”link1″><span class=”link2″><a href=$1.html>
$1, $2 etc. will replace things in brackets.
Huge timesaver if used right, as with all find and replace tools you really should think about how it will …
More+