str_to_camel()converts to camel case, where the first letter of each word is capitalized, with no separation between words. By default the first letter of the first word is not capitalized.str_to_kebab()converts to kebab case, where words are converted to lower case and separated by dashes (-).str_to_snake()converts to snake case, where words are converted to lower case and separated by underscores (_).
