module Mail::Utilities
def unparen( str )
str = '(This is a string)'
Example:
Unwraps a string from being wrapped in parenthesis
def unparen( str ) if str.start_with?('(') && str.end_with?(')') str.slice(1..-2) else str end end
def unparen( str ) if str.start_with?('(') && str.end_with?(')') str.slice(1..-2) else str end end