Convert range of numbers with hyphen to all numbers from range
-
Hello!
I searching Python Scrypt for Notepad++ for convert range of numbers with hyphen (template “Number1-Number2”) to all numbers of range.
For example:
1-4
to
1,2,3,4
and others in this pattern (with hyphen between numbers).
Thanks in advance.
-
Closed!
import re def calculate(match): list1 = '%s'%(str(range(int(match.group(1)),int(match.group(2))+1))) str1 = str(list1).replace('[','').replace(']','') return str1 editor.rereplace(r'(\d+)\-(\d+)', calculate)