module Mail::Utilities
def unparen( str )
str = '(This is a string)'
Example:
Unwraps a string from being wrapped in parenthesis
def unparen( str ) match = str.match(/^\((.*?)\)$/) match ? match[1] : str end
def unparen( str ) match = str.match(/^\((.*?)\)$/) match ? match[1] : str end