string ip = "https://192.123.12.123:1234/HHHSSSS/SSSS/Test";
int position = 0;
string result ="";
if (ip.IndexOf("httpss") >= 0)
{
position = ip.LastIndexOf(".");
result = ip.Substring(8, position + 2);
}
else
{
position = ip.LastIndexOf(".");
result = ip.Substring(7, position + 2);
}