Renaming multiple curves

Hello, I’m wondering if there’s a feature that allows you rename certain names of the curves to a different name. For example, if theres curves that has B12_L01, I would like to copy all the curves that has similar name to like C12_L01.

Hello - _SelName should help - you can use wildcards if you use the command line version _-SelName

e.g. _-SelName "C12*"

If you need to change individual names following some pattern, within the selection, you’ll need a script.

You can try this - it replaces all occurences of text in all object names, no questions asked - it can get fancier.

SimpleRenamer.py (433 Bytes)

To use the Python script use RunPythonScript, or a macro:

_-RunPythonScript "Full path to py file inside double-quotes"

-Pascal