1

Example-

This:

Example/Images/1234567

Needs to become this:

Example/Images/12345671234567

1234567 is a random string of 7 alphanumeric characters on each line.

PJS1987
  • 307

1 Answers1

2
  • Ctrl+H
  • Find what: \w{7}$
  • Replace with: $0$0
  • CHECK Wrap around
  • CHECK Regular expression
  • Replace all

Explanation:

\w{7}       # 7 alphanumeric characters
$           # end of line

Replacement:

$0$0        # twice the whole match

Screenshot (before):

enter image description here

Screenshot (after):

enter image description here

Toto
  • 19,304