fork(4) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. string s = "This is an example to show where to bold the text".Replace(" is ", " <b>is</b> ");
  8. Console.WriteLine(s);
  9. }
  10. }
Success #stdin #stdout 0.02s 33848KB
stdin
Standard input is empty
stdout
This <b>is</b> an example to show where to bold the text