AnnFndRep Annotation Find Replace

Allows multiple find/replace operations using simple strings or regular expressions on annotation objects in the current drawing.

Keyboard Command: AnnFndRep

AnnFndRep

Procedure:

  1. Use the <Select button to designate objects to evaluate.
  2. Click the Single or Multiple button as desired.
  3. Enter find and replacement parameters.
  4. Choose additional options as desired.
  5. Click OK to begin processing.

Notes:

Examples:

In these examples, a space shows as a green empty area, as in " " when it's relevant to the example.

Description Pattern Replacement Original Results
Multiple Spaces ( ){2,} With   multiple   spaces With multiple spaces
Prefix Dollar Sign \d+\.\d{2} $$$& Price 29.95 Price $29.95
Remove Enclosed \(.*?\) Test (10) Times Test Times
Spelling Correct \b(gr[ae]y) gray Use gray or grey? Use gray or gray?
Strip Drive\Path ^.*\\ d:\path\file.txt file.txt
Swap First Word (\S+)(\s+)(\S+) $3$2$1 quick brown fox brown quick fox
Whitespace Strip ^\s+
\s+$
^\s+|\s+$
   Leading
Trailing   
   
Both   
Leading
Trailing
Both