Jan 31, 2008 #1 sbcsandhu Programmer Joined Jul 3, 2007 Messages 113 Location US how do i get the dashes out of the ssn 123-45-6789 would like to see it as 123456789
Jan 31, 2008 #2 AlexCuse Programmer Joined Apr 13, 2006 Messages 5,416 Location US Remember the Replace() function we used for your last question? [small]----signature below----[/small] I'm pushing an elephant up the stairs My Crummy Web Page Upvote 0 Downvote
Remember the Replace() function we used for your last question? [small]----signature below----[/small] I'm pushing an elephant up the stairs My Crummy Web Page
Jan 31, 2008 #3 PatriciaObreja Programmer Joined Jan 14, 2008 Messages 204 Location CA SELECT REPLACE('123-45-6789', '-', '') Upvote 0 Downvote