[
https://issues.apache.org/jira/browse/TEXT-85?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16045928#comment-16045928
]
ASF GitHub Bot commented on TEXT-85:
------------------------------------
Github user arunvinudss commented on the issue:
https://github.com/apache/commons-text/pull/46
@chtompki The current implementation is based on these assumptions.
- All delimiters are stripped off .
- Space(32) is added as the default delimiter for all scenarios including
null and empty delimiter array.
- The boolean parameter for capitalizeFirstCharacter gets higher precedence
than delimiters. For ex if '-' is the delimiter then -abc will give Abc as
output if true is set for capitalizeFirstCharacter.
- A string with no alphabets and only delimiters will return back the input
with no changes.
Just made logical conclusions let me know if need any changes .
> Create CaseUtils class. Add toCamelCase
> ---------------------------------------
>
> Key: TEXT-85
> URL: https://issues.apache.org/jira/browse/TEXT-85
> Project: Commons Text
> Issue Type: Improvement
> Reporter: Rob Tompkins
> Assignee: Rob Tompkins
>
> Based on the conversation here:
> http://markmail.org/message/7nvizsbykvxpr7g5
> We wish to have a {{toCamelCase}} method. The suggestion is to create a
> {{CaseUtils}} class.
> I wonder if we should think about deprecating the case management in
> {{WordUtils}} and move it over? Maybe, maybe not.
> I would think our method signature would look something like:
> {code}
> String toCamelCase(String str, char delimiter, boolean capitalizeFirstLetter)
> {code}
> potentially with {{String}} replaced with {{CharSequence}}.
> Lastly, {{WordUtils.capitalizeFully(String str, final char... delimiters)}}
> might be a good starting point.
> https://github.com/apache/commons-text/blob/master/src/main/java/org/apache/commons/text/WordUtils.java#L467-L499
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)