python-stringcase
python-stringcase copied to clipboard
better implementation of camelcase
old camelcase implementation did not work for many cases (multiple capital, spaces, ...). New implementation should catch all problems
resolves Issue #30 and should make PR #24 redundant
This is nice, but only supports ASCII. A number of the tests also fail. If a space should be considered a separator, this should be done consistently, at the moment only -,_ and . are considered as separators.
Adding spaces and / seems reasonable for titlecase and pathcase conversions.
Also discussed in https://github.com/okunishinishi/python-stringcase/pull/36