using System;
public class Program
{
public static void Main()
//string s = "https://test:99";
string s = "";
int i = s.IndexOf(':');
int length = s.IndexOf(":", i + 1);
Console.WriteLine("Index: " + i);
Console.WriteLine("Index: " + length);
}