C#檢討字符串能否是正當URL地址的辦法。本站提示廣大學習愛好者:(C#檢討字符串能否是正當URL地址的辦法)文章只能為提供參考,不一定能成為您想要的結果。以下是C#檢討字符串能否是正當URL地址的辦法正文
本文實例講述了C#檢討字符串能否是正當URL地址的辦法。分享給年夜家供年夜家參考。詳細完成辦法以下:
protected string HTTPChecker(string Value) { if((Value.Substring(0,7) != "http://") && (Value.Substring(0,8) != "https://")) { Value = "http://" + Value; } return Value; } //END HTTPChecker
願望本文所述對年夜家的C#法式設計有所贊助。