I need a suggestion on how could I retrieve the domain from the following :
*.yahoo.co.uk
*.yahoo.com
so, in both cases, my method mus开发者_StackOverflow中文版t return yahoo.co.uk and yahoo.com.
Is there an easy way to do this, or I just have to struggle with strings and counting characters from the "." and stuff like that?
Thank you in advance.
Regards,
Andrei
You can use TrimStart if you are lokking for stripping just the '.' and '*' characters:
String testString = "*.yahoo.co.uk";
Console.WriteLine(testString.TrimStart(new char[]{'.','*'}));
if (s.StartsWith("*.")) s = s.Substring(2)
精彩评论