• 大小: 0.93KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-26
  • 语言: C#
  • 标签: 方法  

资源简介

【实例简介】

重写String系统方法,让你的string更自由,更好用

【核心代码】

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.Regularexpressions;
using System.Threading.Tasks;

namespace System
{
    public static class StringExtention
    {
        public static int ToInt(this string value)
        {
            int result = 0;
            int.TryParse(value out result);
            return result;
        }

        public static bool IsEmail(this string _input)
        {
            return Regex.IsMatch(_input @“^\w+@\w+\.\w+$“);
        }

        public static bool IsDateTime(this string value)
        {
            bool rst = false;
            try
            {
                DateTime dateTime = DateTime.Now;
                rst = DateTime.TryParse(value out dateTime);
            }
            catch
            { }
            return rst;
        }

        public static string FormatDate(this string value string format)
        {
            string rst = ““

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        3230  2019-12-09 10:38  StringExtention.cs

评论

共有 条评论