Sublime Forum

Número sequencial

#1

Como fazer para substituir em uma coluna 50 valores fixos, por uma sequência de 01 a 50?
Espero ter sido claro.
Grato.

0 Likes

#2

If you’ve got all your values that you want to replace selected using multi-cursor, running the “Arithmetic” command from the command palette with i + 1 will replace your selections with numbers counting up from 1. If you need them to be zero padded str(i + 1).zfill(2) will get you that.

3 Likes