言わずもがな、
「lower-came
な感じで、
「アンダースコア区切りな文字列(以下、underscore
な感じです。
では、早速変換。
LCC → underscore
1 "helloWorld".gsub(/([A-Z])/){'_' + $1.downcase} 2 #=> "hello_worl d"
underscore → LCC
1 "hello_world".gsub(/_([a-z])/){$1.upcase} 2 #=> "helloWorld "
以上!
posted by
y_tsuda
on Tue 23 Jun 2009
at 11:29