StringUtils extension
String utility functions
- on
Methods
-
toCamelCase(
) → String -
Available on String, provided by the StringUtils extension
Converts snake_case into camelCase (e.g., "meal_plan" → "mealPlan"). -
toPascalCase(
) → String -
Available on String, provided by the StringUtils extension
Converts snake_case into PascalCase (e.g., "meal_plan" → "MealPlan"). -
toSnakeCase(
) → String -
Available on String, provided by the StringUtils extension
Converts input like "meal-plan" or "meal plan" into snake_case.