我使用此代码来验证网址
public static bool isUrl(string text)
{
Uri uriResult;
return Uri.TryCreate(text, UriKind.Absolute, out uriResult) && uriResult.Scheme == Uri.UriSchemeHttp;
}
但此代码在我发送google.com,www.google.com
等参数时无效只有当我使用像http://google.com
这样的http时它才有用我需要一个c#代码,例如android
中的Patterns.WEB_URL.matcher(text).matches();