Page 1 of 1

What to edit in Case.VBS file

Posted: Sat Jan 02, 2010 8:46 am
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.

Re: What to edit in Case.VBS file

Posted: Sat Jan 02, 2010 9:19 am
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

Re: What to edit in Case.VBS file

Posted: Sat Jan 02, 2010 9:57 am
by Alexmonkey
Thanks a lot!