Actions
Feature #5391
closedadd simple 'lowercase' option for CaseProcessor
Start date:
10/23/2013
Due date:
% Done:
0%
Estimated time:
Updated by Reynaud Sylvain over 11 years ago
- Status changed from New to Rejected
- Assigned To set to Reynaud Sylvain
This option should not be supported by this plugin because it's behavior can not be consistent:
- if it just lower the case of every character, then we would get different result if original name is in CamelCase or if it is separated with '_' character.
- if it remove word separation, then it would not be bijective.
Moreover, both behaviors can easily be done by combining CaseProcessor with str:replace() or translate() functions.
Actions