Sample

 

Insert

Title

Setting

Sample

Insert space between the words

Mode

RegExp(Case Sensitive)

Search

(\l)(\u)

Replace

\1 \2

Current

Let'sGetOutOfHere.mp3

New

Let's Get Out Of Here.mp3

Bracket to each character

Mode

RegExp

Search

(.)

Replace

[\1]

Current

Download

New

[D][o][w][n][l][o][a][d]

 

Capitalize

Title

Setting

Sample

Capitalize excepting specified words

Mode

RegExp(NOT Case Sensitive)

Search

((?:to|the|of|and|a|'\w)\W)|((?:\w|\.)+)

Replace

\L\1\u\2

Current

LET'S GET OUT OF HERE.MP3

New

Let's Get Out of Here.mp3

Capitalize each words until e-e.

Mode

RegExp

Search

(\w*(?=.*-))|(- )(.*)

Replace

\L\u\1\2\E\3

Current

LET'S GET OUT - Don't Get out.mp3

New

Let's Get Out - Don't Get out.mp3

Capitalize each words until e-e,
and Capitalize a sentence after e-e.

Mode

RegExp

Search

(\w*(?=.*-))|(- )(.*)

Replace

\L\u\1\2\u\3

Current

LET'S GET OUT - DON'T GET OUT.MP3

New

Let's Get Out - Don't get out.mp3

Upper-case the file name,
and lower-case the extension.

Mode

WildCard

Search

*.*

Replace

\U\1.\L\2

Current

Let's Get Out - Don't get out.MP3

New

LET'S GET OUT - DON'T GET OUT.mp3

 

Replace

Title

Setting

Sample

Replace dots to space between the words.

Mode

WildCard

Search

(?:(?:\.|^)(?=[a-z]))

Replace

 

Current

letfs.get.out - v1.2.3

New

letfs get out - v1.2.3

 

Script

Title

Setting

Sample

Replace using lookup table.

Mode

RegExp

Search

(.*)(\..*)

Replace

({CHI:"03",ENG:"01",GER:"02",JPN:"10"})["\1"]
+"\2"

Script

ON (JScript)

Current

New

CHI.jpg

03.jpg

ENG.jpg

01.jpg

GER.jpg

02.jpg

JPN.jpg

10.jpg

Sub-numbering.

Mode

N/A

Search

N/A

Replace

DigitNumber(int(1+?/3),2,vbNone) & "_" & DigitNumber((? mod 3)+1,2,vbNone) &"\e"

Script

ON (VBScript)

Current

New

N/A

001-001.ext

N/A

001-002.ext

N/A

001-003.ext

N/A

002-001.ext