How to convert:
ThisIsMyNewString
to:
this is my new string

thanks

Don't worry i did it my self :P

char [] ags = myString.ToCharArray();
			
			string finalString = string.Empty;
			string new_ch = String.Empty;
			foreach (char ch in ags)
			{
				if(char.IsUpper(ch))
				{
					new_ch = ch.ToString().Replace( ch.ToString(), Convert.ToString( " " + ch.ToString().ToLower() ) );
				}
				else
				{
					new_ch = ch.ToString();
				}
				finalString += new_ch;
			}

			Response.Write(finalString);
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.