From 8a5f6e7c208344736b432515d9b93a1aa78790ed Mon Sep 17 00:00:00 2001 From: Jason Woofenden Date: Mon, 11 Aug 2014 11:46:17 -0400 Subject: [PATCH] format_caption/format_varname: split words on camelCase --- format.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/format.php b/format.php index 17d0461..e0818fd 100644 --- a/format.php +++ b/format.php @@ -19,6 +19,7 @@ # This file contains basic encodings function format_caption($str) { + $str = preg_replace("/([a-z])([A-Z])/", "\\1 \\2", $str); # split words on camelCase $str = str_replace('_', ' ', $str); $str = ucwords($str); return $str; @@ -163,6 +164,7 @@ function format_image_w_h_thumb_w_h($str) { } function format_varname($str) { + $str = preg_replace("/([a-z])([A-Z])/", "\\1_\\2", $str); # split words on camelCase $str = strtolower($str); $str = ereg_replace('[^a-z0-9_]', '_', $str); return ereg_replace('^[0-9]*', '', $str); -- 1.7.10.4