Dec 16, 2005 #1 davetek Programmer Joined Oct 30, 2002 Messages 42 Location IE Hi, I have a string in the format '001 555 2391'. I want to convert this to 0015552391. Any suggestions? Thanks.
Hi, I have a string in the format '001 555 2391'. I want to convert this to 0015552391. Any suggestions? Thanks.
Dec 16, 2005 #2 PHV MIS Joined Nov 8, 2002 Messages 53,708 Location FR Something like this ? newString = Replace(oldString, " ", "") Hope This Helps, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886 Upvote 0 Downvote
Something like this ? newString = Replace(oldString, " ", "") Hope This Helps, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
Dec 16, 2005 Thread starter #3 davetek Programmer Joined Oct 30, 2002 Messages 42 Location IE using access97 and replace function isn't there unfortunately. Upvote 0 Downvote
Dec 16, 2005 #4 fredericofonseca IS-IT--Management Joined Jun 2, 2003 Messages 3,324 Location PT create your own function then. thread701-952372 will give one example similar to what you need. others exist that have exactly what you need. Regards Frederico Fonseca SysSoft Integrated Ltd http://www.syssoft-int.com Upvote 0 Downvote
create your own function then. thread701-952372 will give one example similar to what you need. others exist that have exactly what you need. Regards Frederico Fonseca SysSoft Integrated Ltd http://www.syssoft-int.com