Dec 16, 2005 #1 davetek Programmer Oct 30, 2002 42 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 Nov 8, 2002 53,708 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 Oct 30, 2002 42 IE using access97 and replace function isn't there unfortunately. Upvote 0 Downvote
Dec 16, 2005 #4 fredericofonseca IS-IT--Management Jun 2, 2003 3,324 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