Code: Select all
"Insert Character(s)" $char = input ("Enter the character to insert:");
$pos = input ("Enter position to enter the character:");
rename "r", "^(.{$pos})(.+)$ > $1$char$2", "p"Code: Select all
"Insert Character(s)" $char = input ("Enter the character to insert:");
$pos = input ("Enter position to enter the character:");
rename "r", "^(.{$pos})(.+)$ > $1$char$2", "p"Code: Select all
rename "r", "^(.{3}).(.*)$ > $1$2", "p"