Menu

Conventions

Power Rename supports the following naming conventions by default. If you want to add your own convention, please visit extensions page.

Append Prefix

Append specified prefix to the name.

KeyTypeExampleDescription
PrefixstringNewPrefix to append

Example:

PrefixBeforeAfter
NewCubeNewCube

Append Sequential Number to Prefix

Append sequential number with digits to the prefix.

KeyTypeExampleDescription
Digitsuint3Number of digits
Start Indexint0Starting Number

Example:

DigitsStart IndexBeforeAfter
30Cube000Cube, 001Cube, ...

Append Sequential Number to Suffix

Append sequential number with digits to the suffix.

KeyTypeExampleDescription
Digitsuint3Number of digits
Start Indexint0Starting Number

Example:

DigitsStart IndexBeforeAfter
30CubeCube000, Cube001, ...

Append Suffix

Append specified suffix to the name.

KeyTypeExampleDescription
SuffixstringNewSuffix to append

Example:

SuffixBeforeAfter
NewCubeCubeNew

Remove Leading Spaces

Remove leading spaces from the name.

Example:

BeforeAfter
CubeCube

Remove Prefix

Remove specified prefix from the name.

KeyTypeExampleDescription
Lengthuint3Length of prefix to remove

Example:

LengthBeforeAfter
3NewCubeCube

Remove Suffix

Remove specified suffix from the name.

KeyTypeExampleDescription
Lengthuint3Length of suffix to remove

Example:

LengthBeforeAfter
3CubeNewCube

Remove Trailing Spaces

Remove trailing spaces from the name.

Example:

BeforeAfter
Cube Cube

Replace by Regular Expression

Replace the name by regular expression.

KeyTypeExampleDescription
Patternstring\(\d+\)Regular expression pattern
TostringStringReplacement string

Example:

PatternToBeforeAfter
\(\d+\)StringCube(1)CubeString

Replace by String

Replace the name by string.

KeyTypeExampleDescription
FromstringCubeString to replace
TostringStringReplacement string

Example:

FromToBeforeAfter
CubeStringCube(1)String(1)

To kebab-case

Convert the name to kebab-case.

Example:

BeforeAfter
GameObjectgame-object

To lowerCamelCase

Convert the name to lowerCamelCase.

Example:

BeforeAfter
GameObjectgameObject

To lowercase

Convert the name to lowercase.

Example:

BeforeAfter
GameObjectgameobject

To snake_case

Convert the name to snake_case.

Example:

BeforeAfter
GameObjectgame_object

To Train-Case

Convert the name to Train-Case.

Example:

BeforeAfter
GameObjectGame-Object

To UpperCamelCase

Convert the name to UpperCamelCase.

Example:

BeforeAfter
gameObjectGameObject

To UPPERCASE

Convert the name to UPPERCASE.

Example:

BeforeAfter
GameObjectGAMEOBJECT

To UPPER_SNAKE_CASE

Convert the name to UPPER_SNAKE_CASE.

Example:

BeforeAfter
GameObjectGAME_OBJECT