Skip to main content

Is there a way to bulk delete all the number in the layer name with rename layer feature?
 

 

Hi there,

You should be able to use $`-app' to remove the number prefix.

 

 

Hope it helps!


Hi there,

You should be able to use $`-app' to remove the number prefix.

 

 

Hope it helps!

 

 

$` It does not work?
I would like to remain the current name and delete the number


Hi ​@daken 

 

If you want to remove only digits, how about  \d+ for Match field? The underscores still remain in this case. 

Alternatively, if you want to remove everything before names like "apple" (including any leading underscores and digits), try this pattern:

  • Match field: ^ _]*\d+^_]*

 

I hope this works!

 

Thanks,

Toku


Hi ​@daken 

 

If you want to remove only digits, how about  \d+ for Match field? The underscores still remain in this case. 

Alternatively, if you want to remove everything before names like "apple" (including any leading underscores and digits), try this pattern:

  • Match field: ^ _]*\d+^_]*

 

I hope this works!

 

Thanks,

Toku




its work 
thanks a lot 


Reply