I want to add more space between two numbers. For example:
11267-0-001 156465343224546543654
11267-0-002 457328642874435765477
11267-0-003 764987894666524352345
I want to add more space there, where you can already see one space.
I tried it with a regex like.. 
"11267-\d+-\d+" and wanted to replace it with 
"11267-\d+-\d+     " but as you can imagine, the numbers after 11267 disappeared and it replaced them with \d+-\d+ like this:
11267-d+-d+      156465343224546543654
11267-d+-d+      457328642874435765477
11267-d+-d+      764987894666524352345
how do I do it? I want notepad to look for a pattern like the one I showed, and then without replacing that pattern, it should just add more space or other letters/digits/characters after that pattern.
 
     
    