Page 1 of 1

True Title Case

Posted: 11 May 2023 16:14
by nicholascueto
According to the docs the Rename Special Capitalization command leaves out some articles. This is frustrating because Title Case functions in other programming languages do not have these exceptions. How can I have the function return Title Case without these exceptions?

ie.

Input
XYplorer is the best.ini
Current Output
XYplorer Is the Best.ini
Desired Output (True Title Case ie. space delimited)
XYplorer Is The Best.ini
Thanks!

Re: True Title Case

Posted: 11 May 2023 17:02
by highend
Rename special is a special case of renaming, not the recase() part of the scripting language^^

So: Use a button, UDC, whatever and use rename in conjunction with recase() to get that output

Re: True Title Case

Posted: 11 May 2023 21:14
by jupe
If you don't want any exceptions you can remove them from this ini key:

RenameTitleCaseExceptions=

follow these instructions exactly on how to tweak: https://www.xyplorer.com/faq-topic.php?id=tweak

Re: True Title Case

Posted: 12 May 2023 17:07
by nicholascueto
jupe wrote: 11 May 2023 21:14 If you don't want any exceptions you can remove them from this ini key:

RenameTitleCaseExceptions=

follow these instructions exactly on how to tweak: https://www.xyplorer.com/faq-topic.php?id=tweak
PERFECT. Thank you!