匹配多行字符串中特定单词之前的所有内容

时间:2012-01-24 14:04:31

标签: c# regex

我正在尝试从带有正则表达式的字符串中过滤掉一些垃圾文本,但似乎无法让它工作。我不是一个正则表达式专家(甚至不是很接近),我搜索了类似的例子,但似乎没有解决我的问题。

我需要一个正则表达式,它匹配从字符串的开头到该字符串中的特定单词但不包含单词本身的所有内容。

这是一个例子:

<p>This is the string I want to process with as you can see also contains HTML tags like <i>this</i> and <strong>this</strong></p>
<p>I want to remove everything in the string BEFORE the word "giraffe" (but not "giraffe" itself and keep everything after it.</p>

那么,如何在“长颈鹿”这个词之前匹配字符串中的所有内容?

谢谢!

5 个答案:

答案 0 :(得分:5)

resultString = Regex.Replace(subjectString, 
    @"\A             # Start of string
    (?:              # Match...
     (?!""giraffe"") #  (unless we're at the start of the string ""giraffe"")
    .                #  any character (including newlines)
    )*               # zero or more times", 
    "", RegexOptions.Singleline | RegexOptions.IgnorePatternWhitespace);

应该有用。

答案 1 :(得分:4)

为何选择正则表达式?

String s = "blagiraffe";
s = s.SubString(s.IndexOf("giraffe"));

答案 2 :(得分:1)

试试这个:

    var s =
         @"<p>This is the string I want to process with as you can see also contains HTML tags like <i>this</i> and <strong>this</strong></p>
         <p>I want to remove everything in the string BEFORE the word ""giraffe"" (but not ""giraffe"" itself and keep everything after it.</p>";
    var ex = new Regex("giraffe.*$", RegexOptions.Multiline);
    Console.WriteLine(ex.Match(s).Value);

此代码段产生以下输出:

giraffe" (but not "giraffe" itself and keep everything after it.</p>

答案 3 :(得分:0)

look-ahead可以解决问题:

^.*(?=\s+giraffe)

答案 4 :(得分:0)

你可以使用像这样的前瞻模式

^.*?(?=giraffe)

相关问题