fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. string wikiPageUrl = @"http://i...content-available-to-author-only...a.org/wiki/ʿAbd_Allāh_al-Sallāl";
  8. if (wikiPageUrl.Contains("wikipedia.org/wiki/"))
  9. {
  10. int i = wikiPageUrl.LastIndexOf("wikipedia.org/wiki/");
  11. Console.WriteLine(i);
  12. }
  13. }
  14. }
Success #stdin #stdout 0.05s 34032KB
stdin
Standard input is empty
stdout
10