Oct 3, 2002 #1 JazzLeg Programmer Aug 22, 2002 63 GB Hi, I would like to remove the 5th and 6th characters in a string. How can I do this? Thanks
Oct 3, 2002 #2 Targol Technical User Sep 13, 2002 908 FR dim toto="1234567890" dim tutu tutu = left(toto, 4) & mid(toto,7) 'now tutu contains "12347890" Water is not bad as soon as it stays out human body ;-) Upvote 0 Downvote
dim toto="1234567890" dim tutu tutu = left(toto, 4) & mid(toto,7) 'now tutu contains "12347890" Water is not bad as soon as it stays out human body ;-)