Difference between revisions of "Re-builder"

From WikEmacs
Jump to navigation Jump to search
(Created page with "== RE-Builder == An interactive Emacs tool to build a '''regexp''' (regular expression). == Invocation == '''M-x re-builder''' A new window is created just above the minib...")
 
 
Line 1: Line 1:
== RE-Builder ==
+
== Introduction ==
  
 
An interactive Emacs tool to build a '''regexp''' (regular expression).
 
An interactive Emacs tool to build a '''regexp''' (regular expression).
 +
 +
RE-Builder allows you to interactively develop a '''regexp''' on the contents of the currently active buffer.
 +
Immediately after you type each character, the subject buffer is updated to highlight all those strings that match the
 +
'''regexp''' you've created thus far. Only the first 200 matches (if there are more than 200) are shown.
  
 
== Invocation ==
 
== Invocation ==
Line 11: Line 15:
  
 
You ''build'' your '''regexp''' between the quotation marks in this buffer.
 
You ''build'' your '''regexp''' between the quotation marks in this buffer.
 
== Introduction ==
 
 
RE-Builder allows you to interactively develop a '''regexp''' on the contents of the currently active buffer. Immediately after you type each character, the subject buffer is updated to highlight all those strings that match the
 
'''regexp''' you've created thus far. Only the first 200 matches (if there are more than 200) are shown.
 
  
 
== Examples ==
 
== Examples ==

Latest revision as of 01:21, 10 April 2012

Introduction

An interactive Emacs tool to build a regexp (regular expression).

RE-Builder allows you to interactively develop a regexp on the contents of the currently active buffer. Immediately after you type each character, the subject buffer is updated to highlight all those strings that match the regexp you've created thus far. Only the first 200 matches (if there are more than 200) are shown.

Invocation

M-x re-builder

A new window is created just above the minibuffer with a single a pair of quotation marks (""). This is the *RE-Builder* buffer.

You build your regexp between the quotation marks in this buffer.

Examples