You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a use case where I want to format a string away from camel_case etc. but not remove the casing of each word.
E.g. If someone wrote this_is_Kotlin, I can change it to this is Kotlin.
Current solution is "this_is_Kotlin".splitToWords().joinToString(" "), however not able to do it with the custom case formatter, or at least haven't figured out how.
The text was updated successfully, but these errors were encountered:
I have a use case where I want to format a string away from camel_case etc. but not remove the casing of each word.
E.g. If someone wrote
this_is_Kotlin
, I can change it tothis is Kotlin
.Current solution is
"this_is_Kotlin".splitToWords().joinToString(" ")
, however not able to do it with the custom case formatter, or at least haven't figured out how.The text was updated successfully, but these errors were encountered: