Skip to content

Instantly share code, notes, and snippets.

@adamtaylor
Created February 19, 2011 15:30
Show Gist options
  • Save adamtaylor/835123 to your computer and use it in GitHub Desktop.
Save adamtaylor/835123 to your computer and use it in GitHub Desktop.
Evil localisation of $_ ?
sub _format_key {
my $class = shift;
my ( $key ) = @_;
# Localise $_ so we can use functions that operate on $_ for berevity
local $_ = $key;
# Convert to the correct format/case
s/publishDate/publish_date/ if /publishDate/;
s/lastModifiedDate/last_modified_date/ if /lastModifiedDate/;
return $_;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment