Admin wrote:BRU offers the ability to convert a filename's case - upper case, title case, lower case etc. But some people need exceptions to this. I'm looking for feedback on the best way to implement this, if it happens.
Thank you for your work!
It's likely that I'll only be able to store a finite number of exceptions; this is becasue INI file entries are limited in length.
There for i have voted for an separed BRU file.
So we could select what rules we need just in time.
Also, how should the software handle issues where the words aren;t discrete words. For example filename_one_php_hello contains "php", but the words aren't strictly separate words as there's no spaces.
Jim
Define "stop chars" in each BRU, i.e. word separators like:
^ Â Filename begin=1 ........... ex. One two
\s  space=1 ........... ex. one Two
, Â Â coma=1 ........... ex. one,Two
. Â Â dot=0 ........... ex. one.two
_ Â Â under score=0 ........... ex. one_two
- Â Â minus=1 ........... ex. one-Two
example:
if "under score=0"
the filename "filename_one_php_hello" would be treated as ONE WORD
if "under score=1"
the filename "filename_one_php_hello" would be treated as seperade words
-
i am now confused anyway
