Insert n characters

tomhosking

Well-known member
Joined
Aug 4, 2005
Messages
49
Programming Experience
1-3
Insert n characters [RESOLVED]

Is there a function that will return a certain number of characters? Similar to space, but with any character, not just spaces...
 
Last edited:
Basically, split the string/divide it up, then use PadLeft or PadRight to insert the characters, then join the string back together again.
 
Back
Top