# README
stringkit
string case conversations
The stringkit package makes it simple to change the style of strings between formats like snake_case or PascalCase. This is handy when you want to maintain consistent style among map string keys that people need to read.
For instance, when you create logs, you may accidentally use different styles for keys. However, fixing these later may not be possible due to constraints in the logging system. As a precaution, you can format all the logging field keys to a particular style using the package, so that you are sure they all look the same.
Let's say you are working on a project where you need to generate code from a data model. The data model uses a naming convention of snake_case for variable names, but the code you need to generate requires PascalCase. Without the stringkit package, you would have to manually change each variable name, which can be tedious and error-prone. With the stringkit package, you can easily convert all variable names from snake_case to PascalCase in just a few lines of code. This can save you a lot of time and effort, and also reduce the likelihood of errors.