Social Security Numbers - Tom Kleen

Write a "find and replace" command that will take a date in the American format (mm/dd/yyyy) and convert it into a European format (yyyy/mm/dd). For example, the date January 20, 2013 would be represented like this in the original: 01/20/2013 or 1/20/13. Your command would replace the first example with 2013/01/20 and the second example with 13/1/20. Your pattern should work regardless … ................
................