Submit social housing lettings and sales data (CORE)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

16 lines
402 B

module FormattingHelper
def format_ending(value)
return value if value.blank?
ends_with_any_punctuation = value.match?(/[[:punct:]]\z/)
ends_with_special_char = value.match?(/[%(){}\[\]]\z/)
ends_with_any_punctuation && !ends_with_special_char ? value : "#{value}."
end
def downcase_first_letter(text)
return text if text.blank?
text[0].downcase + text[1..]
end
end