How can I add spaces before each capital letter in a string? Like converting MyWiki into My Wiki
A Anonymous Guest Feb 26, 2005 #1 How can I add spaces before each capital letter in a string? Like converting MyWiki into My Wiki
Alexej Kubarev New member Feb 26, 2005 #2 well... there are several ways... one of them that i would use is create an array with all the capital letters... then parse the string and look for the letters that are in that array... if they are then replace that letter with a space and a letter...
well... there are several ways... one of them that i would use is create an array with all the capital letters... then parse the string and look for the letters that are in that array... if they are then replace that letter with a space and a letter...