Example-
This:
Example/Images/1234567
Needs to become this:
Example/Images/12345671234567
1234567 is a random string of 7 alphanumeric characters on each line.
Example-
This:
Example/Images/1234567
Needs to become this:
Example/Images/12345671234567
1234567 is a random string of 7 alphanumeric characters on each line.
\w{7}$$0$0Explanation:
\w{7} # 7 alphanumeric characters
$ # end of line
Replacement:
$0$0 # twice the whole match
Screenshot (before):
Screenshot (after):