View previous topic :: View next topic |
Author |
Message |
user732
Joined: 27 Apr 2008 Posts: 5
|
Posted: Thu Mar 03, 2016 9:41 pm Post subject: Delete Leading Zeros |
|
|
Hi; I want to delete the leading zero from my music file names-
eg; this: 08- Leave Yesterday Behind (As Time Goes By 2000 Version)
to this: 8- Leave Yesterday Behind (As Time Goes By 2000 Version)
Using the Pre-Defined Regex- SEARCH: (?Ex) [0]+([0-9]+) REPLACE: \1
on this file yields- 8- Leave Yesterday Behind (As Time Goes By 20 Version)
(It's deleting 2 zeros from the 2000 as well).
Please, how do I fix this? THANKS! |
|
Back to top |
|
 |
admin Site Admin
Joined: 09 Mar 2007 Posts: 448 Location: Canada
|
Posted: Fri Mar 04, 2016 7:01 pm Post subject: |
|
|
Hi,
You've found a bug! (Darn it)
To fix it change the [0-9] to [1-9]
Thanks for reporting this.
Peter. |
|
Back to top |
|
 |
|