fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. string ss = "Rs1500/ONLY";
  8. string[] newss = ss.Split('/');
  9. ss = newss[0].ToString().Replace("Rs","");
  10. Console.Write(ss);
  11. }
  12. }
Success #stdin #stdout 0.02s 33864KB
stdin
Standard input is empty
stdout
1500