User Tools

Site Tools


notepad

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
notepad [2013/06/13 06:48] – created skipidarnotepad [2020/12/27 20:35] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +==== Notepad++ ====
  
 +=== Regular Expressions ===
 +They are described here: http://sourceforge.net/apps/mediawiki/notepad-plus/index.php?title=Regular_Expressions
 +
 +==Examples Search & Replace==
 +<code perl>
 +#replace underscores, which follow a "=" by a --
 +Search:  (=[A-Za-z 0-9]*)_
 +Replace: $1--
 +
 +</code>