What to edit in Case.VBS file

Get answers about using MediaMonkey 4 for Windows.

Moderator: Gurus

Alexmonkey

What to edit in Case.VBS file

Post by Alexmonkey »

to make Case Checker turn "d'Egypte" in "D'Egypte". Or, in other words, to make it treat the apostrophe not as a letter, but as a space.
onenonymous
Posts: 374
Joined: Sat Feb 02, 2008 1:09 pm
Location: Texas

Re: What to edit in Case.VBS file

Post by onenonymous »

change line 58 from:

Code: Select all

whiteSpace.pattern = "^[\s,&]+$"  'include comma, ampersand, because we don't want to cap after these
to:

Code: Select all

whiteSpace.pattern = "^[\s,&]+$'"  'include comma, ampersand, because we don't want to cap after these
Alexmonkey

Re: What to edit in Case.VBS file

Post by Alexmonkey »

Thanks a lot!
Post Reply