문자열이 유효한 HTTP URL인지 확인하는 방법은 무엇입니까?
거기 있습니다 Uri.IsWellFormedUriString
및 Uri.TryCreate
방법은, 그러나 그들은 반환하는 것 true
파일 경로 등을 위해
입력 유효성 검사 목적으로 문자열이 유효한 HTTP URL인지 확인하려면 어떻게해야합니까?
HTTP URL의 유효성을 검사하려면 다음을 시도하십시오 ( uriName
테스트하려는 URI 임).
Uri uriResult;
bool result = Uri.TryCreate(uriName, UriKind.Absolute, out uriResult)
&& uriResult.Scheme == Uri.UriSchemeHttp;
또는 HTTP 및 HTTPS URL을 모두 유효한 것으로 승인하려면 (J0e3gan의 설명에 따라) :
Uri uriResult;
bool result = Uri.TryCreate(uriName, UriKind.Absolute, out uriResult)
&& (uriResult.Scheme == Uri.UriSchemeHttp || uriResult.Scheme == Uri.UriSchemeHttps);
이 방법은 http와 https 모두에서 잘 작동합니다. 한 줄만 :)
if (Uri.IsWellFormedUriString("https://www.google.com", UriKind.Absolute))
MSDN : IsWellFormedUriString
public static bool CheckURLValid(this string source)
{
Uri uriResult;
return Uri.TryCreate(source, UriKind.Absolute, out uriResult) && uriResult.Scheme == Uri.UriSchemeHttp;
}
용법:
string url = "htts://adasd.xc.";
if(url.CheckUrlValid())
{
//valid process
}
업데이트 : (한 줄의 코드) 감사합니다 @GoClimbColorado
public static bool CheckURLValid(this string source) => Uri.TryCreate(source, UriKind.Absolute, out Uri uriResult) && uriResult.Scheme == Uri.UriSchemeHttps;
용법:
string url = "htts://adasd.xc.";
if(url.CheckUrlValid())
{
//valid process
}
여기에 모든 해답 중 하나를 허용 다른 제도와의 URL (예 : file://
, ftp://
) 또는로 시작하지 않는 사람이 읽을 수있는 URL을 거부 http://
또는 https://
(예 www.google.com
) 사용자 입력을 처리하지 않을 때 좋은이다 .
내가하는 방법은 다음과 같습니다.
public static bool ValidHttpURL(string s, out Uri resultURI)
{
if (!Regex.IsMatch(s, @"^https?:\/\/", RegexOptions.IgnoreCase))
s = "http://" + s;
if (Uri.TryCreate(s, UriKind.Absolute, out resultURI))
return (resultURI.Scheme == Uri.UriSchemeHttp ||
resultURI.Scheme == Uri.UriSchemeHttps);
return false;
}
용법:
string[] inputs = new[] {
"https://www.google.com",
"http://www.google.com",
"www.google.com",
"google.com",
"javascript:alert('Hack me!')"
};
foreach (string s in inputs)
{
Uri uriResult;
bool result = ValidHttpURL(s, out uriResult);
Console.WriteLine(result + "\t" + uriResult?.AbsoluteUri);
}
산출:
True https://www.google.com/
True http://www.google.com/
True http://www.google.com/
True http://google.com/
False
후 Uri.TryCreate
확인할 수 있습니다 Uri.Scheme
그것은 HTTP 경우 (들)을 참조하십시오.
이것은 bool을 반환합니다.
Uri.IsWellFormedUriString(a.GetAttribute("href"), UriKind.Absolute)
Uri uri = null;
if (!Uri.TryCreate(url, UriKind.Absolute, out uri) || null == uri)
return false;
else
return true;
url
테스트해야 할 문자열은 다음과 같습니다 .
그것을보십시오 :
bool IsValidURL(string URL)
{
string Pattern = @"^(?:http(s)?:\/\/)?[\w.-]+(?:\.[\w\.-]+)+[\w\-\._~:/?#[\]@!\$&'\(\)\*\+,;=.]+$";
Regex Rgx = new Regex(Pattern, RegexOptions.Compiled | RegexOptions.IgnoreCase);
return Rgx.IsMatch(URL);
}
다음과 같은 URL을 허용합니다.
- http (s) : //www.example.com
- http (s) : //stackoverflow.example.com
- http://www.example.com/page
- http (s) : //www.example.com/page? id = 1 & product = 2
- http (s) : //www.example.com/page#start
- http://www.example.com:8080
- http : //s.127.0.0.1
- 127.0.0.1
- www.example.com
- example.com
bool passed = Uri.TryCreate(url, UriKind.Absolute, out Uri uriResult) && (uriResult.Scheme == Uri.UriSchemeHttp || uriResult.Scheme == Uri.UriSchemeHttps)
참고 URL : https://stackoverflow.com/questions/7578857/how-to-check-whether-a-string-is-a-valid-http-url
'IT story' 카테고리의 다른 글
iframe을 다시로드 / 새로 고치는 가장 좋은 방법은 무엇입니까? (0) | 2020.04.20 |
---|---|
클립 : : 오류 : : 누락 요구 사항 유효성 검사기 레일 4 오류 (0) | 2020.04.20 |
자바 스크립트에서 문자열이 목록에 있는지 확인 (0) | 2020.04.20 |
쉘 스크립트에서 주석 차단 (0) | 2020.04.20 |
jQuery를 사용하여 페이지로드시 양식 입력 텍스트 필드에 집중하는 방법은 무엇입니까? (0) | 2020.04.20 |