Oct 13, 2002 #1 RonMcIntire Technical User Joined Oct 12, 2002 Messages 166 Location US How do I repeat characters in a string? For example: How would I create a sring of "." 10 characters long? Ron
How do I repeat characters in a string? For example: How would I create a sring of "." 10 characters long? Ron
Oct 13, 2002 1 #2 KenReay Programmer Joined Aug 15, 2002 Messages 5,424 Location GB Hi you need: String(number, character) so String(10,"." Hope that helps Regards Ken Reay Freelance Solutions Developer Boldon Information Systems Ltd UK kenneth.reaySPAMNOT@talk21.com remove SPAMNOT to use Upvote 0 Downvote
Hi you need: String(number, character) so String(10,"." Hope that helps Regards Ken Reay Freelance Solutions Developer Boldon Information Systems Ltd UK kenneth.reaySPAMNOT@talk21.com remove SPAMNOT to use
Oct 13, 2002 Thread starter #3 RonMcIntire Technical User Joined Oct 12, 2002 Messages 166 Location US Ken: Thanks for your response. That's just what I need. Ron Upvote 0 Downvote