CAD Forum - tips, tricks, discussion and utilities for AutoCAD, Inventor, Revit and other Autodesk products [www.cadforum.cz] ARKANCE | CONTACT - CZ | SK | EN | DE
Over 1.095.000 registered users (EN+CZ). AutoCAD tips, Inventor tips, Revit tips. Try the new precise Engineering calculator. New AutoCAD 2026 commands and variables.

CAD tip CAD tip # 9265:

Question

CAD 
 %  platform  category 
A
The AutoCAD command RENAME has only limited options for complex renaming of layers, blocks or linetypes and you cannot use it to rename a series of layouts in DWG files.

Here comes the rRename LISP utility by Arkance Systems. CS rRename (see DL Download) is a free AutoCAD add-on tool, which allows to rename blocks, layers, layouts, linetypes, views, viewports, styles, user coordinates systems and groups with a simple find/replace or with regular expressions. Unlike the standard RENAME command you can use it to batch-rename layouts or to perform complex renaming schemes like swapping parts of a name, inserting substrings or adding counters (see examples).

Just load the RRENAME.VLX using APPLOAD or ACADDOC.LSP. Start renaming by entering the RRENAME command. It prompts for a type of object to rename (in Civil 3D, you can also rename some types of Civil objects - poIntgroups/Surfaces/Alignmentstyles/pRofilestyles/sitEs):

Rename [Blocks/Layers/lineTypes/layOuts/Views/Textstyles/
Dimstyles/tAblestyles/Materials/viewPorts/Ucs/Groups] < layOuts>:

Then enter the substring or regular expression to find and the substring or regular expression to replace. A standard text will just perform a search/replace renaming. The "*" character in the search string will be used as a wildcard (in fact as the ".+" regular expression). The "#" character in the replace string will be used as a counter (1,2,3...).

The regular expression strings can match object names in complex schemes. The renaming process will avoid objects like the "Model" layout, the layer "0" or the "ByLayer" linetype.

Regular Expressions allow to specify parentheses "(.+)" as stored groups in the search and refer them in the replace string as "$1", "$2", etc. (in the order). Read more about regular expressions in Wikipedia.

Renaming examples (do not type the double-quotes):

"" (empty string) --> "X"
prefix all characters in the names with "X"

"*" --> "New#"
rename all objects to New1, New2, New3, etc.

"(.+)" --> "Pre-$1-Post"
add "Pre-" as prefix and "-Post" as suffix to all names:
Layer1 --> Pre-Layer1-Post

"(.+)-(.+)" --> "$2-$1"
swap parts of names, like "Layer-Electro" to "Electro-Layer"

"(.{3})(.+)" --> "$1-NEW-$2"
add "-NEW-" after first 3 characters:
Layer1 --> Lay-NEW-er1

"(.+)([0-9]+)" --> "$1-#-NEW"
delete trailing numbers, renumber and add "-NEW":
Layer10 --> Layer-1-NEW
Layer15 --> Layer-2-NEW

"[\x20-\x7F]/g" --> "_"
replace non-ASCII characters with "_", globally (multiple):
Žluouèký --> _lu_ou_k_
Kùò --> K__

"Block([0-9]+)" --> "Block{$1+100}"
computed replacements
Block123 --> Block223 (or Block00223)

Use the srxText utility for similar replacing of drawing texts.

Other possibilities for mass renaming are available in the RenameCSV utility.

ACADCivil
100% *CAD
26.5.2013    37197×  
Share the tip:
Digg it! Del.icio.us Facebook Twitter Google bookmark Technorati StumbleUpon
applies to: AutoCAD · Civil 3D ·

See also:
Tip 14223:Arithmetic operations for renaming blocks, levels, layouts...
Tip 14190:How to replace non-ASCII characters in AutoCAD layer names?
Tip 14133:IMAGEATTACH reports Invalid file when attaching some SID images.
Tip 14039:How to display the total volume or surface of 3D solids in DWG?
Tip 13305:Where can I find the icon to run Civil 3D 2023 as AutoCAD?


Back    All CAD Tips



Have we helped you? If you want to support the CAD Forum web service, consider buying one of our CAD applications, or our custom software development offerings, or donating via PayPal (see above). You may also add a link to your web - like this "fan" link: CAD Forum - tips, utilities, blocks for Autodesk products
CAD: 
OS: 
Categ: 
Text:
 FAQ
  



Featuring:
Generate hatch patterns automatically from your DWG drawings with
HGEN 2006 More info


Please use these tips at your own risk.
ARKANCE is not responsible for possible problems that may occur as a result of using any of these tips.
TOPlist