Is there a way to 'apply' a regular expression formatting to an unformatted value of data?
So for example, if my current data contains a field for Social Security Number like this "123456789", could I somehow feed in the Regular Expression requirement like "[\d]{3}-[\d]{2}-[\d]{4}" to reshape all SSN values to "123-45-6789"?
Thank you!