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的详细内容,更多请关注【创想鸟】其它相关文章!
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至253000106@qq.com举报,一经查实,本站将立刻删除。
发布者:PHP中文网,转转请注明出处:https://www.chuangxiangniao.com/p/2431102.html