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-4to
1,2,3,4and 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)
Hello! It looks like you're interested in this conversation, but you don't have an account yet.
Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.
With your input, this post could be even better 💗
Register Login