首頁 > 後端開發 > C#.Net教程 > C# 程式檢查字串中的 URL

C# 程式檢查字串中的 URL

王林
發布: 2023-08-28 13:21:11
轉載
959 人瀏覽過

C# 程序检查字符串中的 URL

Use the StartWith() method in C# to check for URL in a String.

Let us say our input string is −

string input = "https://example.com/new.html";
登入後複製

現在我們需要檢查www或非www連結。為此,在C#中使用if語句−

if (input.StartsWith("https://www.example.com") || input.StartsWith("https://example.com")) {
}
登入後複製

Example

You can try to run the following code to check for URL in a string.

Live Demo

using System;
class Demo {
   static void Main() {
      string input = "https://example.com/new.html";
      // See if input matches one of these starts.
      if (input.StartsWith("https://www.example.com") || input.StartsWith("https://example.com")) {
         Console.WriteLine(true);
      }
   }
}
登入後複製

輸出

True
登入後複製
#

以上是C# 程式檢查字串中的 URL的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:tutorialspoint.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板