module FormattingHelper # Remove surrounding quotes from string def remove_surrounding_quotes(string) string.gsub!(/^\"|"\Z/, '') unless string.blank? end end