Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

replace space with underscore in c#

using System;
class Demo {
   static void Main() {
      String str, str2;
      str ="Hello World !";
      Console.WriteLine("String: "+str);
      str2 = str.Replace(" ", "-");
      Console.WriteLine("String (After replacing): "+str2);
   }
}
Source by www.tutorialspoint.com #
 
PREVIOUS NEXT
Tagged: #replace #space #underscore
ADD COMMENT
Topic
Name
4+7 =