Possibility to Insert characters with Rename Special
Posted: 20 Jan 2008 14:55
Hello,
is it possible to insert some characters with any of the "Rename Special"-Tools at a specific place in the filename? I can match the position using RegEx, but I don't seem to be able to carry over the matched part (i.e. not replace it).
An example would be the filename "Something.or.other.###.something.else.ext" where ### are three digits.
I need to insert characters before and after the first of those digits, for example "Something.or.other.insert1#insert2##.something.else.ext", without (!!) removing or changing the digits.
The regular expression: "(\.)([0-9])([0-9][0-9])(\.)" should match & group the digits, but I can't find a way to just use the pattern to just find the spot and add characters (instead of replacing it with a static string).
Is there any way that I've missed?
thanks,
Creat
is it possible to insert some characters with any of the "Rename Special"-Tools at a specific place in the filename? I can match the position using RegEx, but I don't seem to be able to carry over the matched part (i.e. not replace it).
An example would be the filename "Something.or.other.###.something.else.ext" where ### are three digits.
I need to insert characters before and after the first of those digits, for example "Something.or.other.insert1#insert2##.something.else.ext", without (!!) removing or changing the digits.
The regular expression: "(\.)([0-9])([0-9][0-9])(\.)" should match & group the digits, but I can't find a way to just use the pattern to just find the spot and add characters (instead of replacing it with a static string).
Is there any way that I've missed?
thanks,
Creat