util/string_utils library
Functions
-
isValidSnakeCase(
String input) → bool - Validate a snake_case name.
-
toCamelCase(
String input) → String - Convert snake_case to camelCase. Example: order_history → orderHistory
-
toPascalCase(
String input) → String - Convert snake_case to PascalCase. Example: order_history → OrderHistory