首页 > TAG信息列表 > RegexOptions

正则表达式

1、至少有一个数字:([0-9]+) 2、表示至少有一个汉字:([^/]+) 3、截取字符串(截取内容中所有a标签中的链接) string[] link = Regex.Split(sArray[i], @"<a[^>]*href=(""(?<href>[^""]*)""|'(?<href>[^']*)'|(?<href>[^\s>]*))[^>

sql server使用正则表达式

目标为数据库创建一个正则表达式函数,供查询使用不建议使用函数,能查询到内存里面用代码解决的就用代码解决!!!这里的方法仅供参考操作1.新建sql server项目2.定义正则表达式的方法public class SqlFunction {     /// 是否匹配正则表达式     //////输入的字符串///正则表达

C#遍历正则匹配到的多个结果的代码

直接上代码: Regex regex = new Regex(strPattern, RegexOptions.IgnoreCase | RegexOptions.Multiline); if (regex.IsMatch(htmlContent)) { MatchCollection matchCollection = regex.Matches(htmlContent); foreach (Match match in matchCollection)

.net工具类——HTML处理

    #region 截取字符长度 /// <summary> /// 截取字符长度 /// </summary> /// <param name="inputString">字符</param> /// <param name="len">长度</param> /// <

DOTNET CORE WEB API 自定义 数据注释

参考: .Net 4 源码 手机号码数据注释 /// <summary> /// 人名验证属性 /// </summary> public sealed class NameAttribute:ValidationAttribute { /// <summary> /// 正则匹配 /// </summary> private static Regex _rege

C#去除HTML标签方法

原文链接:http://www.cnblogs.com/TSPWater/archive/2011/10/11/2206814.html public static string ExecRepaceHTML(string Htmlstring) { Htmlstring = Regex.Replace(Htmlstring, @"<script[^>]*?>.*?</script>", "&quo

转换链接的正则

原文链接:http://www.cnblogs.com/wysky/archive/2007/12/21/1008973.html 转自http://www.cnblogs.com/dudu/archive/2007/12/19/1006119.html,收藏一下.    public static string ShowUrls(string text)    {        //代码来自博