fork download
  1. using System;
  2. namespace Example
  3. {
  4. public class Program {
  5. public static void Main() {
  6. string s = "aSSa";
  7. int sIndex = s.IndexOf('S');
  8. if (sIndex >= 0) {
  9. s = s.Substring(0, sIndex) + "ac" + s.Substring(sIndex + 1);
  10. }
  11. Console.WriteLine(s);
  12. }
  13. }
  14. }
Success #stdin #stdout 0.03s 37928KB
stdin
Standard input is empty
stdout
aacSa