博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
asp.net 正则 例子
阅读量:6628 次
发布时间:2019-06-25

本文共 904 字,大约阅读时间需要 3 分钟。

using System.Text.RegularExpressions; //正则

string strHtml = "  

Tags in this photo:

  • Belgium
  • Belgien
  • Urlaub
  • Holidays
  • Vakanties
  • CenterParcs
  • 10 000 000
  •   
    ";
    TextBox1.Text = "" + strHtml + "";      Regex re = new Regex("(?<=
  •  

     

    结果:

    Belgium 

    Belgien 
    Urlaub 
    Holidays 
    Vakanties 
    CenterParcs 
    10 000 000

     

     

     

    /// 
    <summary>
    ///
     从文章内容中获取第一张图片,用作文章缩略图
    /// 
    </summary>
    /// 
    <param name="articleContent"></param>
    /// 
    <returns></returns>
    public 
    static 
    string
     GetImageUrlFromArticle(
    string
     articleContent)
    {
        Regex r 
    = 
    new
     Regex(
    @"
    <IMG[^>]+src=\s*(?:'(?<src>[^']+)'|""(?<src>[^""]+)""|(?<src>[^>\s]+))\s*[^>]*>
    "
    , RegexOptions.IgnoreCase);
        MatchCollection mc 
    =
     r.Matches(articleContent);
        
    if
     (mc.Count 
    != 
    0
    )
        {
            
    return
     mc[
    0
    ].Groups[
    "
    src
    "
    ].Value.ToLower();
        }
        
    else
        {
            
    return 
    ""
    ;
        }
    }

     

     

     

     

     

         本文转自曾祥展博客园博客,原文链接:http://www.cnblogs.com/zengxiangzhan/archive/2009/12/21/1629364.html,如需转载请自行联系原作者

     

     

     

     

     

    你可能感兴趣的文章
    Arduino示例教程超声波测距实验
    查看>>
    Redis操作hash
    查看>>
    轻松搞定个人虚拟桌面部署之5-在客户端测试远程桌面
    查看>>
    Linux中chkconfig使用介绍
    查看>>
    二进制方式快速安装MySQL数据库
    查看>>
    Centos5上部署udev
    查看>>
    挑战WORD极限排版之模板与加载项
    查看>>
    Tomcat配置多数据源
    查看>>
    js string format
    查看>>
    httpHandlers和httpModules接口介绍 (3)
    查看>>
    《大话数据结构》第9章 排序 9.1 开场白
    查看>>
    Xgcalendar 新增Php demo
    查看>>
    poj2774
    查看>>
    xsi插件的安装方法
    查看>>
    查询指定库中所有表
    查看>>
    黄聪:用php判断当前用户访问网站是否为手机登录
    查看>>
    Flash AS3 Loader的一些总结
    查看>>
    .net(vs2010)调试技巧
    查看>>
    45个纯 CSS 实现的精美边框效果【附在线演示和源码】【下篇】
    查看>>
    js的逻辑 OR 运算符- ||
    查看>>