melvin Site Admin
Joined: 25 May 2006 Posts: 635 Location: Santa Barbara, california
|
Posted: Thu Mar 18, 2010 2:15 pm Post subject: Regex Rename - strip first 20 characters of filename |
|
|
User needs to strip first 20 characters of filename during a rename task or ftp transfer and rename.
for the rename field use:
.{20}<REPLACE>
. matches any character
.{20} matches 20 characters |
|