dilip-4 opened a new pull request, #1389: URL: https://github.com/apache/commons-lang/pull/1389
### Summary This PR adds a `camelCase(String input)` method to a new utility class (`StringUtils`) that transforms strings into camelCase format. It handles various common delimiters (`_`, `-`, whitespace) and removes non-alphanumeric characters. ### Example Inputs and Outputs - "user_name" → "userName" - "User-Name" → "userName" - "user name test" → "userNameTest" - "USER_ID" → "userId" ### Motivation This utility fills a gap in string transformation capabilities in `commons-lang`, especially for developers working with naming conventions for APIs, variables, or JSON keys. ### Notes - Added comprehensive Javadoc and test cases. - Followed existing code style and conventions. Let me know if any changes or improvements are needed. Happy to iterate! -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org