We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Simply run this code:
var kebabed = "some-text-here"; var pascalized = kebabed.Pascalize(); Console.WriteLine(pascalized); // prints Some-Text-Here instead of SomeTextHere
The text was updated successfully, but these errors were encountered:
Workaround:
var pascalized = kebabed.Underscore().Pascalize();
This is not ideal as it now has to process the string twice (more time/allocations).
Sorry, something went wrong.
I handeled this problem in this PR: #1299
Successfully merging a pull request may close this issue.
Simply run this code:
The text was updated successfully, but these errors were encountered: