场景
Winform程序中,需要配置http接口地址以及mqtt协议的ip地址,需要对http接口地址以及ip地址字符串
的格式进行合法性校验。
注:
博客:
霸道流氓气质的博客_优快云博客-C#,架构之路,SpringBoot领域博主
实现
1、新建校验工具类FormatCheckHelper
using System;
using System.Text.RegularExpressions;
namespace DataConvert.com.bdtd.dataconvert
{
public class FormatCheckHelper
{
public static bool IsHttpUrl(string str_url)
{
Uri uriResult;
bool result =
Uri.