If you are very sure the date string is in dd/mm/yyyy format, then the easiest way I would suggest is to replace / with -
dtstring = '07/12/2005'
newdtstring = replace(dtstring,'/','-')
Good Luck
-- This message may have been cut off and the rest will only be shown to members. To become a member, click here --