Page 1 of 1

how can rename regex after a world delete

Posted: 10 Aug 2017 19:01
by drjs5x
hi dears

test42345435[video]_720p_low_dfdsfgdsfg.mp4
test42345435[video]_240p_low_df333dsfgdsfg.mp4
test42345435[video]_720p_low_dfdsf8888888gdsfg.mp4
test42345435[video]_480p_low_dfdsfg6865879867dsfg.mp4

how can regexp after [video] delete.
after regexp rename
test42345435[video].mp4
test42345435[video].mp4
test42345435[video].mp4
test42345435[video].mp4

second question regexp
for result
test42345435.mp4
test42345435.mp4
test42345435.mp4
test42345435.mp4
Sincerely

Re: how can rename regex after a world delete

Posted: 10 Aug 2017 19:39
by highend

Code: Select all

^([^_]+?)(_.*)(\.[^.]+$) > $1$3

Code: Select all

^([^\[]+?)(\[.*)(\.[^.]+$) > $1$3

Re: how can rename regex after a world delete

Posted: 10 Aug 2017 19:57
by drjs5x
^([^\[]+?)(\[.*)(\.[^.]+$) > $1$3
very good highend
thank you very much highend and xyplorer.
:appl: :appl: :appl: :appl: :appl:

Re: how can rename regex after a world delete

Posted: 10 Aug 2017 20:01
by drjs5x
conflict ??? dupe... how can solution? can we add suffix this proplem?
example result testA1.mp4 testA2.mp4 testA3.mp4 ... 1 2 3 4 5... etc no overwrite... ?
possible?
Sincerely

Re: how can rename regex after a world delete

Posted: 10 Aug 2017 20:09
by highend
how can solution
Use a script instead?

Re: how can rename regex after a world delete

Posted: 10 Aug 2017 20:11
by drjs5x
no proplem . script or right click rexep rename.
any solution. no proplem. script or anything.
:idea:
Just be a solution.. it does not matter.. script or any method ..
thanks.

Re: how can rename regex after a world delete

Posted: 10 Aug 2017 20:19
by drjs5x
i fixed dear .
step 01= right click batch rename *_<#00> step 02= regex rename. thanks big coder.

no again :( proplem.
i will fix :))
Sincerely.


batch rename <#00>_*
regex rename ^([^\[]+?)(\[.*)(\.[^.]+$) > $1$3
batch rename *_<#00>
regex rename " \d+_ > " without "

fixed..