使用正则表达式替换提取字符

Posted 欣欣点灯

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用正则表达式替换提取字符相关的知识,希望对你有一定的参考价值。

 将 td th 标签替换,保留标签内容

  public  string TextFilter(string CommandText)
    {
        CommandText = Regex.Replace(CommandText, @"(?<part1>(<td>\n*\r*))(?<part2>(%?[^%]+))(?<part3>(</td>))", new MatchEvaluator(TextFilter), RegexOptions.IgnoreCase | RegexOptions.Multiline);
        CommandText = Regex.Replace(CommandText, @"(?<part1>(<td[^>]*>\n*\r*))(?<part2>(%?[^%]+))(?<part3>(</td>))", new MatchEvaluator(TextFilter), RegexOptions.IgnoreCase | RegexOptions.Multiline);        
        CommandText = Regex.Replace(CommandText, @"(?<part1>(<th[^>]*>\n*\r*))(?<part2>(%?[^%]+))(?<part3>(</th>))", new MatchEvaluator(TextFilter), RegexOptions.IgnoreCase | RegexOptions.Multiline);
        CommandText = Regex.Replace(CommandText, @"(?<part1>(<td[^>]*>\n*\r*))(?<part2>(</td>))", new MatchEvaluator(TextFilter2), RegexOptions.IgnoreCase | RegexOptions.Multiline);    
        return CommandText;
    }
    public string TextFilter(Match match)
    {
        string part1 = match.Groups["part1"].Value;
        string part2 = match.Groups["part2"].Value;
        string part3 = match.Groups["part3"].Value;
        return part2.Replace("&nbsp;", "").Trim();
    }

提取span里面的内容,如未包含span则返回原始字符串

  public string SpanText(string CommandText)
    {
        Regex reg = new Regex(@"(?<part1>(.*<span[^>]*>\n*\r*))(?<part2>(%?[^>]+))(?<part3>(</span>))", RegexOptions.IgnoreCase | RegexOptions.Multiline);
        var result = reg.Match(CommandText).Groups;

        if (result["part2"] != null && result.Count > 1)
        {
            return result["part2"].Value;
        }
        else
        {
            return CommandText;
        }        
    }

 

以上是关于使用正则表达式替换提取字符的主要内容,如果未能解决你的问题,请参考以下文章

java 字符串替换

JAVA正则表达式怎么匹配所有符合要求的子字符串

如何使用 JavaScript 正则表达式提取字符串?

js 常用正则表达式表单验证代码

js利用正则表达式提取字符串中的特殊字符串

如何用excel中的VBA的正则表达式提取出字符串?