我有一些正则表达式,例如:“/[0-9]{3}/”
我需要这个正则表达式的值生成器。
regexp = "/[0-9]{3}/"
value_generator(regexp, 5) # 5 is count of values.
我想输出
324
533
654
444
546 的列表
有可能的?
我有一些正则表达式,例如:“/[0-9]{3}/”
我需要这个正则表达式的值生成器。
regexp = "/[0-9]{3}/"
value_generator(regexp, 5) # 5 is count of values.
我想输出
324
533
654
444
546 的列表
有可能的?