使用批处理文件或 excel sheet 创建一系列由数字和字母组成的值

Create a series of values made up of numbers and letters, with a batch file, or with an excel sheet

好的,这就是问题所在:我需要创建数以千计的由数字和字母组成的“数字”,以便当我到达“9”时,数字继续为“a、b、c、... “所以我需要这样的输出:

0001  0011
0002  0012
0003  0013
0004  0014
0005  0015
0006  0016
0007  0017
0008  0018
0009  0019
000a  001a
000b  001b
000c  001c
0010  etc...

您有什么想法可以使用批处理文件(输出 .txt)或 excel 来创建它吗?

在 Excel 中使用 BASE():

=BASE(ROW($ZZ1),13,4)

将其放在第一个单元格中并复制下来。