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