Created
August 21, 2014 17:16
-
-
Save cballenar/b71de8117b7042b01e92 to your computer and use it in GitHub Desktop.
Craft & Twig bits
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{# 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