Skip to content

Instantly share code, notes, and snippets.

@cballenar
Created August 21, 2014 17:16
Show Gist options
  • Save cballenar/b71de8117b7042b01e92 to your computer and use it in GitHub Desktop.
Save cballenar/b71de8117b7042b01e92 to your computer and use it in GitHub Desktop.
Craft & Twig bits
{# Convert hyphenated-string to camelCase #}
{{ string | regex ( '/-([a-z])/e', 'ucfirst("\\1")' ) }}
{# Convert camelCasedString to hyphenated-one #}
{{ string | regex( '/(^|[a-z])([A-Z])/e', 'strtolower( strlen("\\1") ? "\\1-\\2" : "\\2" )', (type.handle) ) }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment